forked from chuongmep/CadPythonShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.csproj
More file actions
21 lines (21 loc) · 818 Bytes
/
Build.csproj
File metadata and controls
21 lines (21 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<Platforms>AnyCPU</Platforms>
<NoWarn>CS0649;CS0169</NoWarn>
<LangVersion>latest</LangVersion>
<ImplicitUsings>true</ImplicitUsings>
<TargetFramework>net6.0</TargetFramework>
<NukeRootDirectory>..</NukeRootDirectory>
<NukeScriptDirectory>..</NukeScriptDirectory>
<NukeTelemetryVersion>1</NukeTelemetryVersion>
<Configurations>Release;Debug</Configurations>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nuke.Common" Version="6.0.1"/>
<PackageReference Include="vswhere" Version="2.*"/>
</ItemGroup>
<ItemGroup>
<PackageDownload Include="GitVersion.Tool" Version="[5.8.1]"/>
</ItemGroup>
</Project>