-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy path_build.csproj
More file actions
51 lines (47 loc) · 2.43 KB
/
_build.csproj
File metadata and controls
51 lines (47 loc) · 2.43 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
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace></RootNamespace>
<IsPackable>False</IsPackable>
<NoWarn>CS0649;CS0169;CS9107</NoWarn>
<NukeTelemetryVersion>1</NukeTelemetryVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="chocolatey" Version="2.5.1" />
<PackageReference Include="GitVersion.Core" Version="6.5.1" />
<PackageReference Include="Microsoft.Build" Version="18.0.2" />
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="18.0.2" />
<PackageReference Include="NuGet.CommandLine" Version="7.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="NuGet.Versioning" Version="7.0.1" />
<PackageReference Include="Nuke.Common" Version="10.0.0" />
<PackageReference Include="Nuke.GitHub" Version="7.0.0" />
<PackageReference Include="NUnit.ConsoleRunner" Version="3.20.2" />
</ItemGroup>
<ItemGroup>
<NukeMetadata Include="**\*.json" Exclude="bin\**;obj\**" />
<NukeExternalFiles Include="**\*.*.ext" Exclude="bin\**;obj\**" />
<None Remove="*.csproj.DotSettings;*.ref.*.txt" />
<None Include="..\appveyor-release.yml" Link="appveyor-release.yml" />
<None Include="..\appveyor.gitversion.yml" Link="appveyor.gitversion.yml" />
<None Include="..\Build-DebugPack.ps1" Link="Build-DebugPack.ps1" />
<None Include="..\Build-ReleasePack.ps1" Link="Build-ReleasePack.ps1" />
<!-- Common build related files -->
<None Include="..\build.ps1" />
<None Include="..\build.sh" />
<None Include="..\.nuke" />
<None Include="..\global.json" Condition="Exists('..\global.json')" />
<None Include="..\nuget.config" Condition="Exists('..\nuget.config')" />
<None Include="..\azure-pipelines.yml" Condition="Exists('..\azure-pipelines.yml')" />
<None Include="..\Jenkinsfile" Condition="Exists('..\Jenkinsfile')" />
<None Include="..\appveyor.yml" Condition="Exists('..\appveyor.yml')" />
<None Include="..\.travis.yml" Condition="Exists('..\.travis.yml')" />
<None Include="..\GitVersion.yml" Condition="Exists('..\GitVersion.yml')" />
</ItemGroup>
<ItemGroup>
<PackageDownload Include="GitVersion.Tool" Version="[6.1.0]" />
</ItemGroup>
</Project>