forked from nuke-build/nuke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
57 lines (48 loc) · 2.4 KB
/
Directory.Build.props
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
52
53
54
55
56
57
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>preview</LangVersion>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<NoWarn>CS1591;NU5129;NU5118</NoWarn>
<DefineConstants>$(DefineConstants);JETBRAINS_ANNOTATIONS</DefineConstants>
<DebugType>embedded</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<PropertyGroup>
<Description>The AKEless Build System for C#/.NET</Description>
<Authors>Matthias Koch, Ulrich Buchgraber, Sebastian Karasek</Authors>
<Copyright>Copyright $([System.DateTime]::Now.Year) Maintainers of NUKE</Copyright>
<PackageTags>build automation continuous-integration tools orchestration</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://nuke.build</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<!-- <PackageReadmeFile>README.md</PackageReadmeFile>-->
</PropertyGroup>
<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('Tests'))">
<IsPackable>False</IsPackable>
</PropertyGroup>
<PropertyGroup Condition="'$(IsPackable)' != 'False'">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup Condition="'$(_IsPacking)' == 'True'">
<None Include="..\..\icon.png" Pack="true" PackagePath="\" />
<!-- <None Include="..\..\README.md" Pack="true" PackagePath="\" />-->
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup Condition="$(MSBuildProjectName.EndsWith('Tests'))">
<PackageReference Include="coverlet.msbuild" Version="3.2.0" />
<PackageReference Include="FluentAssertions" Version="6.10.0"/>
<PackageReference Include="GitHubActionsTestLogger" Version="2.0.1"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0"/>
<PackageReference Include="TeamCity.VSTest.TestAdapter" Version="1.0.36"/>
<PackageReference Include="Verify.Xunit" Version="19.10.0" />
<PackageReference Include="Verify.DiffPlex" Version="2.2.0" />
<PackageReference Include="xunit" Version="2.4.2"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5"/>
</ItemGroup>
<ItemGroup>
<Compile Include="..\AssemblyInfo.cs" />
</ItemGroup>
</Project>