-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAutoGraphSharp.Test.csproj
36 lines (31 loc) · 1.38 KB
/
AutoGraphSharp.Test.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net471;netcoreapp2.0</TargetFrameworks>
<StartupObject>AutoGraphSharp.Test.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<DotNetCliToolReference Include="dotnet-codegen" Version="0.4.88" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="2.9.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.4.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
<PackageReference Include="Nerdbank.GitVersioning" Version="2.2.13">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="TensorFlowSharp" Version="1.12.0" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AutoGraphSharp\AutoGraphSharp.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="AdditionSource.expected">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>