Permalink
Please sign in to comment.
Showing
with
19,527 additions
and 22,600 deletions.
- +1 −0 .gitignore
- +14 −0 Setup/Accord.Setup (NETStandard).csproj
- +20 −2 Setup/Scripts/UpdateVersion.cs
- +29 −0 Sources/Accord.Audio.DirectSound/Accord.Audio.DirectSound (NETStandard).csproj
- +25 −0 Sources/Accord.Audio/Accord.Audio (NETStandard).csproj
- +0 −2 Sources/Accord.Audio/ComplexFilters/Base/IComplexFilter.cs
- +0 −1 Sources/Accord.Audio/ComplexFilters/CombFilter.cs
- +0 −1 Sources/Accord.Audio/ComplexFilters/DifferentialRectificationFilter.cs
- +0 −1 Sources/Accord.Audio/ComplexFilters/EnvelopeFilter.cs
- +0 −77 Sources/Accord.Audio/Filters/SignalConverter.cs
- +0 −1 Sources/Accord.Audio/Filters/WaveRectifier.cs
- +0 −1 Sources/Accord.Audio/Generators/ImpulseGenerator.cs
- +0 −1 Sources/Accord.Audio/Signals/ComplexSignal.cs
- +0 −1 Sources/Accord.Audio/Signals/Signal.cs
- +1 −2 Sources/Accord.Audio/Tools.cs
- +0 −1 Sources/Accord.Audio/UnsafeTools.cs
- +0 −1 Sources/Accord.Audio/Windows/IWindow.cs
- +0 −1 Sources/Accord.Audio/Windows/RectangularWindow.cs
- +0 −1 Sources/Accord.Audio/Windows/WindowBase.cs
- +29 −0 Sources/Accord.Audition/Accord.Audition (NETStandard).csproj
- +17 −0 Sources/Accord.Controls.Audio/Accord.NS.Controls.Audio.csproj
- +17 −0 Sources/Accord.Controls.Imaging/Accord.NS.Controls.Imaging.csproj
- +17 −0 Sources/Accord.Controls.Statistics/Accord.NS.Controls.csproj
- +17 −0 Sources/Accord.Controls.Vision/Accord.NS.Controls.Vision.csproj
- +22 −0 Sources/Accord.Core/Accord.Core (NETStandard).csproj
- +7 −7 Sources/Accord.Core/Collections/PriorityQueue.cs
- +1 −1 Sources/Accord.Core/Collections/ReadOnlyOrderedDictionary.cs
- +58 −0 Sources/Accord.Core/Compatibility/RangeAttribute.cs
- +1 −1 Sources/Accord.Core/Properties/VersionInfo.cs
- +30 −0 Sources/Accord.DataSets/Accord.DataSets (NETStandard).csproj
- +1 −1 Sources/Accord.DataSets/Base/SparseDataSet.cs
- +25 −0 Sources/Accord.Fuzzy/Accord.Fuzzy (NETStandard).csproj
- +27 −0 Sources/Accord.Genetic/Accord.Genetic (NETStandard).csproj
- +30 −0 Sources/Accord.IO/Accord.IO (NETStandard).csproj
- +2 −1 Sources/Accord.IO/ExcelReader.cs
- +2 −2 Sources/Accord.IO/Extensions.Matrix.cs
- +0 −379 Sources/Accord.Imaging/AForge.Imaging/Filters/Transform/RotateNearestNeighbor.cs
- +33 −0 Sources/Accord.Imaging/Accord.Imaging (NETStandard).csproj
- +32 −0 Sources/Accord.MachineLearning/Accord.MachineLearning (NETStandard).csproj
- +2 −0 Sources/Accord.MachineLearning/DecisionTrees/DecisionTree.cs
- +1 −1 Sources/Accord.MachineLearning/KNearestNeighbors`1.cs
- +0 −130 Sources/Accord.MachineLearning/Multiclass/Generative.cs
- +0 −240 Sources/Accord.MachineLearning/Multiclass/Learning/GenerativeLearning.cs
- +6 −6 Sources/Accord.MachineLearning/Multiclass/OneVsOne.cs
- +4 −4 Sources/Accord.MachineLearning/VectorMachines/Learning/AveragedStochasticGradientDescent.cs
- +6 −6 Sources/Accord.MachineLearning/VectorMachines/MulticlassSupportVectorMachine`2.cs
- +26 −0 Sources/Accord.Math.Core/Accord.Math.Core (NETStandard).csproj
- +2,267 −2,267 Sources/Accord.Math.Core/Matrix.Add.Generated.cs
- +704 −704 Sources/Accord.Math.Core/Matrix.Comparisons.Generated.cs
- +11 −11 Sources/Accord.Math.Core/Matrix.Comparisons.tt
- +2,267 −2,267 Sources/Accord.Math.Core/Matrix.Divide.Generated.cs
- +1,386 −1,386 Sources/Accord.Math.Core/Matrix.Elementwise.Generated.cs
- +12 −12 Sources/Accord.Math.Core/Matrix.Elementwise.tt
- +49 −49 Sources/Accord.Math.Core/Matrix.Elementwise2.tt
- +2 −2 Sources/Accord.Math.Core/Matrix.Elementwise3.tt
- +2,267 −2,267 Sources/Accord.Math.Core/Matrix.Multiply.Generated.cs
- +10 −10 Sources/Accord.Math.Core/Matrix.MultiplyAndAdd.Generated.cs
- +2,267 −2,267 Sources/Accord.Math.Core/Matrix.Subtract.Generated.cs
- +27 −0 Sources/Accord.Math/Accord.Math (NETStandard).csproj
- +8 −8 Sources/Accord.Math/Accord.Statistics/Classes.cs
- +2 −2 Sources/Accord.Math/Accord.Statistics/Measures.Vectors.cs
- +48 −48 Sources/Accord.Math/Distance.Generated.cs
- +1 −1 Sources/Accord.Math/Distance.cs
- +1 −1 Sources/Accord.Math/Distance.tt
- +2 −2 Sources/Accord.Math/Distances/Angular.cs
- +1 −1 Sources/Accord.Math/Distances/ArgMax.cs
- +1 −1 Sources/Accord.Math/Distances/BrayCurtis.cs
- +1 −1 Sources/Accord.Math/Distances/Canberra.cs
- +1 −1 Sources/Accord.Math/Distances/Chebyshev.cs
- +2 −2 Sources/Accord.Math/Distances/Cosine.cs
- +2 −2 Sources/Accord.Math/Distances/Dice.cs
- +4 −4 Sources/Accord.Math/Distances/Euclidean.cs
- +4 −4 Sources/Accord.Math/Distances/Hamming.cs
- +1 −1 Sources/Accord.Math/Distances/Hamming`1.cs
- +1 −1 Sources/Accord.Math/Distances/Hellinger.cs
- +2 −2 Sources/Accord.Math/Distances/Jaccard.cs
- +2 −2 Sources/Accord.Math/Distances/Jaccard`1.cs
- +2 −2 Sources/Accord.Math/Distances/Kulczynski.cs
- +1 −1 Sources/Accord.Math/Distances/Levenshtein.cs
- +1 −1 Sources/Accord.Math/Distances/Levenshtein`1.cs
- +1 −1 Sources/Accord.Math/Distances/Mahalanobis.cs
- +2 −2 Sources/Accord.Math/Distances/Manhattan.cs
- +2 −2 Sources/Accord.Math/Distances/Matching.cs
- +2 −2 Sources/Accord.Math/Distances/Minkowski.cs
- +2 −2 Sources/Accord.Math/Distances/Modular.cs
- +1 −1 Sources/Accord.Math/Distances/PearsonCorrelation.cs
- +2 −2 Sources/Accord.Math/Distances/RogersTanimoto.cs
- +2 −2 Sources/Accord.Math/Distances/RusselRao.cs
- +2 −2 Sources/Accord.Math/Distances/SokalMichener.cs
- +2 −2 Sources/Accord.Math/Distances/SokalSneath.cs
- +3 −3 Sources/Accord.Math/Distances/SquareEuclidean.cs
- +1 −1 Sources/Accord.Math/Distances/SquaredMahalanobis.cs
- +2 −2 Sources/Accord.Math/Distances/Yule.cs
- +41 −41 Sources/Accord.Math/Matrix/Jagged.Construction.cs
- +0 −1,087 Sources/Accord.Math/Matrix/Jagged.Measures.Generated.cs
- +0 −587 Sources/Accord.Math/Matrix/Jagged.Measures.tt
- +117 −117 Sources/Accord.Math/Matrix/Jagged.Product.Generated.cs
- +2 −2 Sources/Accord.Math/Matrix/Jagged.Product.tt
- +1 −1 Sources/Accord.Math/Matrix/Matrix.Common.cs
- +12 −12 Sources/Accord.Math/Matrix/Matrix.Comparisons.tt
- +768 −768 Sources/Accord.Math/Matrix/Matrix.Comparisons1.Generated.cs
- +1 −1 Sources/Accord.Math/Matrix/Matrix.Complex.cs
- +36 −36 Sources/Accord.Math/Matrix/Matrix.Construction.cs
- +720 −720 Sources/Accord.Math/Matrix/Matrix.Conversions.Generated.cs
- +10 −10 Sources/Accord.Math/Matrix/Matrix.Conversions.tt
- +0 −949 Sources/Accord.Math/Matrix/Matrix.Measures.Generated.cs
- +0 −518 Sources/Accord.Math/Matrix/Matrix.Measures.tt
- +78 −78 Sources/Accord.Math/Matrix/Matrix.Product.tt
- +4,660 −4,660 Sources/Accord.Math/Matrix/Matrix.Product1.Generated.cs
- +240 −240 Sources/Accord.Math/Matrix/Matrix.Reduction.Generated.cs
- +13 −13 Sources/Accord.Math/Matrix/Matrix.Reduction.tt
- +7 −7 Sources/Accord.Math/Matrix/Matrix.Selection.cs
- +4 −4 Sources/Accord.Math/Matrix/Vector.MinMax.cs
- +1 −1 Sources/Accord.Math/Random/ZigguratUniformGenerator.cs
- +2 −2 Sources/Accord.Math/Random/ZigguratUniformOneGenerator.cs
- +4 −4 Sources/Accord.Math/Sort.cs
- +26 −26 Sources/Accord.Math/Special.cs
- +1 −1 Sources/Accord.Math/Tools.cs
- +23 −23 Sources/Accord.Math/Vector/Vector.Construction.cs
- +3 −3 Sources/Accord.Math/Vector/Vector.Sparse.cs
- 0 Sources/{Accord.NET.LGPL.sln → Accord.NET (LGPL-only).sln}
- +218 −0 Sources/Accord.NET (NETStandard).sln
- +30 −0 Sources/Accord.NET (NETStandard).targets
- +29 −76 Sources/Accord.NET.sln
- +6 −2 Sources/Accord.NET.targets
- +28 −0 Sources/Accord.Statistics/Accord.Statistics (NETStandard).csproj
- +9 −9 Sources/Accord.Statistics/Distances/Bhattacharyya.cs
- +1 −1 Sources/Accord.Statistics/Distributions/Multivariate/Continuous/MultivariateNormalDistribution.cs
- +8 −8 Sources/Accord.Statistics/Kernels/Linear.cs
- +0 −262 Sources/Accord.Statistics/Models/Markov/Learning/MultipleBaumWelchLearning.cs
- +0 −89 Sources/Accord.Statistics/Models/Regression/Linear/MultivariateBilinearRegression.cs
- BIN Sources/Accord.Statistics/Visualizations/HistogramBinCollection.cs
- +28 −0 Sources/Accord.Text/Accord.Text (NETStandard).csproj
- +32 −0 Sources/Accord.Video.DirectShow/Accord.Video.DirectShow (NETStandard).csproj
- +5 −2 Sources/Accord.Video.DirectShow/VideoCaptureDeviceForm.Designer.cs
- +12 −9 Sources/Accord.Video.DirectShow/VideoCaptureDeviceForm.cs
- +31 −0 Sources/Accord.Video.Kinect/Accord.Video.Kinect (NETStandard).csproj
- +31 −0 Sources/Accord.Video.VFW/Accord.Video.VFW (NETStandard).csproj
- +32 −0 Sources/Accord.Video.Ximea/Accord.Video.Ximea (NETStandard).csproj
- +32 −0 Sources/Accord.Video/Accord.Video (NETStandard).csproj
- +33 −0 Sources/Accord.Vision/Accord.Vision (NETStandard).csproj
- +1 −1 Sources/Extras/Accord.Video.FFMPEG.GPL/VersionInfo.cpp
- +9 −0 Sources/Version.targets
- +2 −0 Sources/force-clean.cmd
- 0 ...cord.Perf.MachineLearning → Tools/Performance/MachineLearning}/Accord.Perf.MachineLearning.csproj
- BIN {Performance/Accord.Perf.MachineLearning → Tools/Performance/MachineLearning}/Accord.snk
- 0 {Performance/Accord.Perf.MachineLearning → Tools/Performance/MachineLearning}/App.config
- 0 {Performance/Accord.Perf.MachineLearning → Tools/Performance/MachineLearning}/Program.cs
- 0 ...mance/Accord.Perf.MachineLearning → Tools/Performance/MachineLearning}/Properties/AssemblyInfo.cs
- 0 {Performance/Accord.Perf.MachineLearning → Tools/Performance/MachineLearning}/packages.config
- +33 −0 Tools/open-csprojs-netstandard.bat
- +23 −0 Unit Tests/Accord.Tests.Audio/Accord.Tests.Audio (NETStandard).csproj
- +23 −0 Unit Tests/Accord.Tests.Core/Accord.Tests.Core (NETStandard).csproj
- +23 −0 Unit Tests/Accord.Tests.IO/Accord.Tests.IO (NETStandard).csproj
- +23 −0 Unit Tests/Accord.Tests.Imaging/Accord.Tests.Imaging (NETStandard).csproj
- +23 −0 Unit Tests/Accord.Tests.MachineLearning/Accord.Tests.MachineLearning (NETStandard).csproj
- +24 −0 Unit Tests/Accord.Tests.Math/Accord.Tests.Math (NETStandard).csproj
- +23 −0 Unit Tests/Accord.Tests.Statistics/Accord.Tests.Statistics (NETStandard).csproj
- +23 −0 Unit Tests/Accord.Tests.Text/Accord.Tests.Text (NETStandard).csproj
- +23 −0 Unit Tests/Accord.Tests.Video/Accord.Tests.Video (NETStandard).csproj
- +23 −0 Unit Tests/Accord.Tests.Vision/Accord.Tests.Vision (NETStandard).csproj
- +6 −0 Unit Tests/Accord.Tests.targets
- +4 −0 build-all.cmd
- +22 −3 clean-all.cmd
| @@ -0,0 +1,14 @@ | ||
| +<Project Sdk="Microsoft.NET.Sdk"> | ||
| + | ||
| + <PropertyGroup> | ||
| + <AssemblyName>Accord.Setup</AssemblyName> | ||
| + <RootNamespace>Accord.Setup</RootNamespace> | ||
| + <Configurations>Debug</Configurations> | ||
| + <TargetFramework>netstandard2.0</TargetFramework> | ||
| + </PropertyGroup> | ||
| + | ||
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
| + <DefineConstants>TRACE;DEBUG;NETSTANDARD2_0</DefineConstants> | ||
| + </PropertyGroup> | ||
| + | ||
| +</Project> |
| @@ -0,0 +1,29 @@ | ||
| +<Project Sdk="Microsoft.NET.Sdk"> | ||
| + | ||
| + <PropertyGroup> | ||
| + <AssemblyName>Accord.Audio.DirectSound</AssemblyName> | ||
| + <RootNamespace>Accord.Audio.DirectSound</RootNamespace> | ||
| + </PropertyGroup> | ||
| + | ||
| + <Import Project="$(SolutionDir)Accord.NET (NETStandard).targets" /> | ||
| + | ||
| +<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
| + <DefineConstants>TRACE;DEBUG;NETSTANDARD2_0</DefineConstants> | ||
| + <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
| + <OutputPath>$(SolutionDir)..\Debug\</OutputPath> | ||
| + <DocumentationFile></DocumentationFile> | ||
| + </PropertyGroup> | ||
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netstandard|AnyCPU'"> | ||
| + <DefineConstants>TRACE;RELEASE;NETSTANDARD2_0</DefineConstants> | ||
| + </PropertyGroup> | ||
| + | ||
| + <ItemGroup> | ||
| + <PackageReference Include="SharpDX" Version="4.0.1" /> | ||
| + <PackageReference Include="SharpDX.DirectSound" Version="4.0.1" /> | ||
| + </ItemGroup> | ||
| + | ||
| + <ItemGroup> | ||
| + <ProjectReference Include="..\Accord.Audio\Accord.Audio (NETStandard).csproj" /> | ||
| + </ItemGroup> | ||
| + | ||
| +</Project> |
| @@ -0,0 +1,25 @@ | ||
| +<Project Sdk="Microsoft.NET.Sdk"> | ||
| + | ||
| + <PropertyGroup> | ||
| + <AssemblyName>Accord.DataSets</AssemblyName> | ||
| + <RootNamespace>Accord.DataSets</RootNamespace> | ||
| + </PropertyGroup> | ||
| + | ||
| + <Import Project="$(SolutionDir)Accord.NET (NETStandard).targets" /> | ||
| + | ||
| +<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
| + <DefineConstants>TRACE;DEBUG;NETSTANDARD2_0</DefineConstants> | ||
| + <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
| + <OutputPath>$(SolutionDir)..\Debug\</OutputPath> | ||
| + <DocumentationFile></DocumentationFile> | ||
| + </PropertyGroup> | ||
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netstandard|AnyCPU'"> | ||
| + <DefineConstants>TRACE;RELEASE;NETSTANDARD2_0</DefineConstants> | ||
| + </PropertyGroup> | ||
| + | ||
| + <ItemGroup> | ||
| + <ProjectReference Include="..\Accord.Math.Core\Accord.Math.Core (NETStandard).csproj" /> | ||
| + <ProjectReference Include="..\Accord.Math\Accord.Math (NETStandard).csproj" /> | ||
| + </ItemGroup> | ||
| + | ||
| +</Project> |
| @@ -1,77 +0,0 @@ | ||
| -// Accord (Experimental) Audio Library | ||
| -// Accord.NET framework | ||
| -// http://www.crsouza.com | ||
| -// | ||
| -// Copyright © César Souza, 2009-2011 | ||
| -// cesarsouza at gmail.com | ||
| -// | ||
| - | ||
| -namespace Accord.Audio.Filters | ||
| -{ | ||
| - using System.Collections.Generic; | ||
| - | ||
| - public class FormatConverter : BaseFilter | ||
| - { | ||
| - private SampleFormat destinationFormat; | ||
| - | ||
| - private Dictionary<SampleFormat, SampleFormat> formatTranslations = new Dictionary<SampleFormat, SampleFormat>(); | ||
| - | ||
| - public override Dictionary<SampleFormat, SampleFormat> FormatTranslations | ||
| - { | ||
| - get { return formatTranslations; } | ||
| - } | ||
| - | ||
| - public FormatConverter(SampleFormat destinationFormat) | ||
| - { | ||
| - this.destinationFormat = destinationFormat; | ||
| - | ||
| - if (destinationFormat == SampleFormat.Format32BitIeeeFloat) | ||
| - { | ||
| - formatTranslations[SampleFormat.Format16Bit] = destinationFormat; | ||
| - formatTranslations[SampleFormat.Format32Bit] = destinationFormat; | ||
| - } | ||
| - else | ||
| - { | ||
| - throw new UnsupportedSampleFormatException(); | ||
| - } | ||
| - } | ||
| - | ||
| - protected override void ProcessFilter(Signal sourceData, Signal destinationData) | ||
| - { | ||
| - int channels = sourceData.Channels; | ||
| - int length = sourceData.Length; | ||
| - SampleFormat dstFormat = destinationData.SampleFormat; | ||
| - SampleFormat srcFormat = sourceData.SampleFormat; | ||
| - | ||
| - if (dstFormat == SampleFormat.Format32BitIeeeFloat) | ||
| - { | ||
| - float dst; | ||
| - | ||
| - if (srcFormat == SampleFormat.Format16Bit) | ||
| - { | ||
| - short src; | ||
| - for (int c = 0; c < channels; c++) | ||
| - { | ||
| - for (int i = 0; i < length; i++) | ||
| - { | ||
| - src = (short)sourceData.GetSample(c, i); | ||
| - SampleConverter.Convert(src, out dst); | ||
| - } | ||
| - } | ||
| - } | ||
| - else if (srcFormat == SampleFormat.Format32Bit) | ||
| - { | ||
| - int src; | ||
| - for (int c = 0; c < channels; c++) | ||
| - { | ||
| - for (int i = 0; i < length; i++) | ||
| - { | ||
| - src = (int)sourceData.GetSample(c, i); | ||
| - SampleConverter.Convert(src, out dst); | ||
| - } | ||
| - } | ||
| - } | ||
| - } | ||
| - } | ||
| - } | ||
| -} |
| @@ -0,0 +1,29 @@ | ||
| +<Project Sdk="Microsoft.NET.Sdk"> | ||
| + | ||
| + <PropertyGroup> | ||
| + <AssemblyName>Accord.Audition</AssemblyName> | ||
| + <RootNamespace>Accord.Audition</RootNamespace> | ||
| + </PropertyGroup> | ||
| + | ||
| + <Import Project="$(SolutionDir)Accord.NET (NETStandard).targets" /> | ||
| + | ||
| + | ||
| +<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
| + <DefineConstants>TRACE;DEBUG;NETSTANDARD2_0</DefineConstants> | ||
| + <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> | ||
| + <OutputPath>$(SolutionDir)..\Debug\</OutputPath> | ||
| + <DocumentationFile></DocumentationFile> | ||
| + </PropertyGroup> | ||
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='netstandard|AnyCPU'"> | ||
| + <DefineConstants>TRACE;RELEASE;NETSTANDARD2_0</DefineConstants> | ||
| + </PropertyGroup> | ||
| + <ItemGroup> | ||
| + <ProjectReference Include="..\Accord.Audio\Accord.Audio (NETStandard).csproj" /> | ||
| + <ProjectReference Include="..\Accord.Core\Accord.Core (NETStandard).csproj" /> | ||
| + <ProjectReference Include="..\Accord.MachineLearning\Accord.MachineLearning (NETStandard).csproj" /> | ||
| + <ProjectReference Include="..\Accord.Math.Core\Accord.Math.Core (NETStandard).csproj" /> | ||
| + <ProjectReference Include="..\Accord.Math\Accord.Math (NETStandard).csproj" /> | ||
| + <ProjectReference Include="..\Accord.Statistics\Accord.Statistics (NETStandard).csproj" /> | ||
| + </ItemGroup> | ||
| + | ||
| +</Project> |
| @@ -0,0 +1,17 @@ | ||
| +<Project Sdk="Microsoft.NET.Sdk"> | ||
| + | ||
| + <PropertyGroup> | ||
| + <TargetFramework>netstandard2.0</TargetFramework> | ||
| + </PropertyGroup> | ||
| + | ||
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
| + <AllowUnsafeBlocks>True</AllowUnsafeBlocks> | ||
| + <DefineConstants>TRACE;DEBUG;NETSTANDARD2_0</DefineConstants> | ||
| + </PropertyGroup> | ||
| + | ||
| + <ItemGroup> | ||
| + <Compile Remove="Properties\AssemblyInfo.cs" /> | ||
| + <Compile Remove="Properties\VersionInfo.cs" /> | ||
| + </ItemGroup> | ||
| + | ||
| +</Project> |
| @@ -0,0 +1,17 @@ | ||
| +<Project Sdk="Microsoft.NET.Sdk"> | ||
| + | ||
| + <PropertyGroup> | ||
| + <TargetFramework>netstandard2.0</TargetFramework> | ||
| + </PropertyGroup> | ||
| + | ||
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
| + <AllowUnsafeBlocks>True</AllowUnsafeBlocks> | ||
| + <DefineConstants>TRACE;DEBUG;NETSTANDARD2_0</DefineConstants> | ||
| + </PropertyGroup> | ||
| + | ||
| + <ItemGroup> | ||
| + <Compile Remove="Properties\AssemblyInfo.cs" /> | ||
| + <Compile Remove="Properties\VersionInfo.cs" /> | ||
| + </ItemGroup> | ||
| + | ||
| +</Project> |
| @@ -0,0 +1,17 @@ | ||
| +<Project Sdk="Microsoft.NET.Sdk"> | ||
| + | ||
| + <PropertyGroup> | ||
| + <TargetFramework>netstandard2.0</TargetFramework> | ||
| + </PropertyGroup> | ||
| + | ||
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
| + <AllowUnsafeBlocks>True</AllowUnsafeBlocks> | ||
| + <DefineConstants>TRACE;DEBUG;NETSTANDARD2_0</DefineConstants> | ||
| + </PropertyGroup> | ||
| + | ||
| + <ItemGroup> | ||
| + <Compile Remove="Properties\AssemblyInfo.cs" /> | ||
| + <Compile Remove="Properties\VersionInfo.cs" /> | ||
| + </ItemGroup> | ||
| + | ||
| +</Project> |
Oops, something went wrong.
0 comments on commit
4780e21