Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
.vs

# User-specific files
*.suo
Expand Down
213 changes: 213 additions & 0 deletions Sources/Build All (netstandard).sln

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions Sources/Core/Core (netstandard).csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\Release\</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants>TRACE;MONO</DefineConstants>
<AssemblyName>AForge</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

</Project>
14 changes: 14 additions & 0 deletions Sources/Fuzzy/Fuzzy (netstandard).csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\Release\</OutputPath>
<AssemblyName>AForge.Fuzzy</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Core\Core (netstandard).csproj" />
</ItemGroup>

</Project>
15 changes: 15 additions & 0 deletions Sources/Genetic/Genetic (netstandard).csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\Release\</OutputPath>
<AssemblyName>AForge.Genetic</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Core\Core (netstandard).csproj" />
<ProjectReference Include="..\Math\Math (netstandard).csproj" />
</ItemGroup>

</Project>
19 changes: 19 additions & 0 deletions Sources/Imaging.Formats/Imaging.Formats (netstandard).csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\Release\</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyName>AForge.Imaging.Formats</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="4.5.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Core\Core (netstandard).csproj" />
</ItemGroup>

</Project>
17 changes: 17 additions & 0 deletions Sources/Imaging/Imaging (netstandard).csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\Release\</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyName>AForge.Imaging</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Core\Core (netstandard).csproj" />
<ProjectReference Include="..\Imaging.Formats\Imaging.Formats (netstandard).csproj" />
<ProjectReference Include="..\Math\Math (netstandard).csproj" />
</ItemGroup>

</Project>
10 changes: 10 additions & 0 deletions Sources/MachineLearning/MachineLearning (netstandard).csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\Release\</OutputPath>
<AssemblyName>AForge.MachineLearning</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

</Project>
14 changes: 14 additions & 0 deletions Sources/Math/Math (netstandard).csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\Release\</OutputPath>
<AssemblyName>AForge.Math</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Core\Core (netstandard).csproj" />
</ItemGroup>

</Project>
14 changes: 14 additions & 0 deletions Sources/Neuro/Neuro (netstandard).csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\Release\</OutputPath>
<AssemblyName>AForge.Neuro</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Genetic\Genetic (netstandard).csproj" />
</ItemGroup>

</Project>
18 changes: 18 additions & 0 deletions Sources/Robotics.Lego/Robotics.Lego (netstandard).csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\Release\</OutputPath>
<AssemblyName>AForge.Robotics.Lego</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.IO.Ports" Version="4.5.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Core\Core (netstandard).csproj" />
</ItemGroup>

</Project>
18 changes: 18 additions & 0 deletions Sources/Robotics.Surveyor/Robotics.Surveyor (netstandard).csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\Release\</OutputPath>
<AssemblyName>AForge.Robotics.Surveyor</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="4.5.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Video\Video (netstandard).csproj" />
</ItemGroup>

</Project>
19 changes: 19 additions & 0 deletions Sources/Video.Kinect/Video.Kinect (netstandard).csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\Release\</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyName>AForge.Video.Kinect</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="4.5.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Video\Video (netstandard).csproj" />
</ItemGroup>

</Project>
15 changes: 15 additions & 0 deletions Sources/Video.VFW/Video.VFW (netstandard).csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\Release\</OutputPath>
<AssemblyName>AForge.Video.FVW</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Imaging\Imaging (netstandard).csproj" />
<ProjectReference Include="..\Video\Video (netstandard).csproj" />
</ItemGroup>

</Project>
16 changes: 16 additions & 0 deletions Sources/Video.Ximea/Video.Ximea (netstandard).csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\Release\</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyName>AForge.Video.Ximea</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Imaging\Imaging (netstandard).csproj" />
<ProjectReference Include="..\Video\Video (netstandard).csproj" />
</ItemGroup>

</Project>
14 changes: 14 additions & 0 deletions Sources/Video/Video (netstandard).csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\Release\</OutputPath>
<AssemblyName>AForge.Video</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Imaging\Imaging (netstandard).csproj" />
</ItemGroup>

</Project>
15 changes: 15 additions & 0 deletions Sources/Vision/Vision (netstandard).csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputPath>..\..\Release\</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyName>AForge.Vision</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Imaging\Imaging (netstandard).csproj" />
</ItemGroup>

</Project>