Skip to content
Snippets Groups Projects
Commit 90bf9523 authored by Carl Philipp Klemm's avatar Carl Philipp Klemm
Browse files

kissinference_test: add netstandart2.0 also to test applictiaon

parent 4bfa48ff
No related branches found
No related tags found
No related merge requests found
...@@ -9,14 +9,15 @@ kissinference_test: kissinference ...@@ -9,14 +9,15 @@ kissinference_test: kissinference
clean: clean:
dotnet msbuild kissinference.csproj -t:Clean dotnet msbuild kissinference.csproj -t:Clean
dotnet msbuild kissinference_test.csproj -t:Clean dotnet msbuild kissinference_test.csproj -t:Clean
rm -r doc/html doc/latex rm -r doc/html doc/latex || true
.PHONY: doc .PHONY: doc
doc: doc:
doxygen doc/libkissinference.doxygen doxygen doc/libkissinference.doxygen
restore: restore:
dotnet restore dotnet restore kissinference.sln
dotnet restore kissinference_test.csproj
run: run:
dotnet bin/net8/kissinference.dll ../scripttraining/simplenet100-6.onnx dotnet bin/net8/kissinference.dll ../scripttraining/simplenet100-6.onnx
...@@ -4,13 +4,13 @@ ...@@ -4,13 +4,13 @@
<OutputPath>bin\</OutputPath> <OutputPath>bin\</OutputPath>
<OutputType>exe</OutputType> <OutputType>exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TargetFrameworks>net6;net7;net8</TargetFrameworks> <TargetFrameworks>netstandard2.0;net6;net7;net8</TargetFrameworks>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems> <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="kissinference"> <Reference Include="kissinference">
<HintPath>bin\$(TargetFramework)\kinnsinference.dll</HintPath> <HintPath>bin\$(TargetFramework)\kissinference.dll</HintPath>
</Reference> </Reference>
<Compile Include="program.cs" /> <Compile Include="program.cs" />
</ItemGroup> </ItemGroup>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment