forked from accord-net/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
accord-netGH-318: Adding support for targetting .NET Standard 2.0.
- Loading branch information
1 parent
f99af2a
commit 4780e21
Showing
164 changed files
with
19,527 additions
and
22,600 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
bin | ||
obj | ||
|
||
.vs | ||
*.user | ||
*.pidb | ||
*.suo | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
Sources/Accord.Audio.DirectSound/Accord.Audio.DirectSound (NETStandard).csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,6 @@ | |
|
||
namespace Accord.Audio.ComplexFilters | ||
{ | ||
using AForge.Math; | ||
using System.Numerics; | ||
|
||
/// <summary> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,6 @@ | |
namespace Accord.Audio.Windows | ||
{ | ||
using System; | ||
using AForge.Math; | ||
|
||
/// <summary> | ||
/// Spectral Window | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,6 @@ | |
|
||
namespace Accord.Audio.Windows | ||
{ | ||
using AForge.Math; | ||
using System.Numerics; | ||
|
||
/// <summary> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,6 @@ | |
|
||
namespace Accord.Audio.Windows | ||
{ | ||
using AForge.Math; | ||
using System.Numerics; | ||
|
||
/// <summary> | ||
|
29 changes: 29 additions & 0 deletions
29
Sources/Accord.Audition/Accord.Audition (NETStandard).csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |
17 changes: 17 additions & 0 deletions
17
Sources/Accord.Controls.Audio/Accord.NS.Controls.Audio.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |
17 changes: 17 additions & 0 deletions
17
Sources/Accord.Controls.Imaging/Accord.NS.Controls.Imaging.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |
17 changes: 17 additions & 0 deletions
17
Sources/Accord.Controls.Statistics/Accord.NS.Controls.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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.