-
Notifications
You must be signed in to change notification settings - Fork 195
/
Copy pathExamples.Utils.csproj
29 lines (23 loc) · 1.1 KB
/
Examples.Utils.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<WarningsNotAsErrors>CS8981</WarningsNotAsErrors>
<!-- The Directory.Build.props initialize TargetFrameworks to multiple targets. We have to clear that out to set only the targets we support. -->
<TargetFrameworks></TargetFrameworks>
<LangVersion>9.0</LangVersion>
<TargetFrameworks Condition="'$(TargetFrameworks)' == ''">net8.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
<PackageReference Include="System.Reflection.Metadata" Version="6.0.0" />
<Compile Include="$(MSBuildThisFileDirectory)..\..\src\TorchSharp\netstandard.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SharpZipLib" Version="1.4.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.7" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TorchSharp\TorchSharp.csproj" />
<ProjectReference Include="..\TorchVision\TorchVision.csproj" />
</ItemGroup>
</Project>