-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoylib.csproj
More file actions
43 lines (35 loc) · 1.6 KB
/
Copy pathdoylib.csproj
File metadata and controls
43 lines (35 loc) · 1.6 KB
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
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<AssemblyName>doylib</AssemblyName>
<RootNamespace>doylib</RootNamespace>
<Version>1.0.0</Version>
<DefaultItemExcludes>$(DefaultItemExcludes);doylib.tests/**</DefaultItemExcludes>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<ProjectReference Include="../DoyVestment.Framework/DoyVestment.Framework/DoyVestment.Framework.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' != 'Debug'">
<PackageReference Include="DoyVestment.Framework" Version="1.2.2" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="doylib.tests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.5" />
<PackageReference Include="Microsoft.ML.OnnxRuntime.Gpu" Version="1.23.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<Target Name="CopyToSignalhandlerStrategy" AfterTargets="Build" Condition="'$(Configuration)' == 'Debug'">
<ItemGroup>
<_DoylibArtifacts Include="$(TargetDir)doylib.dll;$(TargetDir)doylib.pdb" />
</ItemGroup>
<Copy SourceFiles="@(_DoylibArtifacts)" DestinationFolder="$(MSBuildThisFileDirectory)../DoyVestment/DoyVestment.Signalhandler/Strategy" SkipUnchangedFiles="true" />
</Target>
</Project>