-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
62 lines (53 loc) · 2.38 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
58
59
60
61
62
<Project>
<PropertyGroup>
<Version>0.74.0</Version>
</PropertyGroup>
<PropertyGroup>
<Authors>Olaf Kober</Authors>
<Copyright>Copyright (c) 2024, Olaf Kober</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/Amarok79/Amarok.Diagnostics</PackageProjectUrl>
<RepositoryUrl>https://github.com/Amarok79/Amarok.Diagnostics</RepositoryUrl>
<PackageIcon>amarok.png</PackageIcon>
<PublishRepositoryUrl>True</PublishRepositoryUrl>
<EmbedUntrackedSources>True</EmbedUntrackedSources>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageOutputPath>..\..\out\</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<None Include="..\amarok.png" Pack="True" PackagePath="\" />
</ItemGroup>
<PropertyGroup>
<UseArtifactsOutput>True</UseArtifactsOutput>
<ArtifactsPath>..\..\bin</ArtifactsPath>
</PropertyGroup>
<PropertyGroup>
<ImplicitUsings>Enable</ImplicitUsings>
<Nullable>Enable</Nullable>
<RootNamespace>Amarok</RootNamespace>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<IsPackable>True</IsPackable>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<Deterministic>True</Deterministic>
</PropertyGroup>
<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('.Tests'))">
<Nullable>Enable</Nullable>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<IsPackable>False</IsPackable>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('.Benchmarks'))">
<Nullable>Disable</Nullable>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<IsPackable>False</IsPackable>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('.DebugApp'))">
<Nullable>Enable</Nullable>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<IsPackable>False</IsPackable>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
</PropertyGroup>
</Project>