-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDotCompute.Samples.ErrorRecovery.csproj
More file actions
26 lines (23 loc) · 1.11 KB
/
DotCompute.Samples.ErrorRecovery.csproj
File metadata and controls
26 lines (23 loc) · 1.11 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsTestProject>false</IsTestProject>
<IsPackable>false</IsPackable>
<RootNamespace>DotCompute.Samples.ErrorRecovery</RootNamespace>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
<PublishRepositoryUrl>false</PublishRepositoryUrl>
<EmbedUntrackedSources>false</EmbedUntrackedSources>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<WarningsNotAsErrors>$(WarningsNotAsErrors);NU1604</WarningsNotAsErrors>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../../../src/Backends/DotCompute.Backends.CUDA/DotCompute.Backends.CUDA.csproj" />
<ProjectReference Include="../../../src/Core/DotCompute.Abstractions/DotCompute.Abstractions.csproj" />
</ItemGroup>
</Project>