-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathDirectory.Build.props
53 lines (44 loc) · 1.97 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
<Project>
<PropertyGroup>
<OutputPath>$(MSBuildThisFileDirectory)bin\$(Configuration)</OutputPath>
<PackageOutputPath>$(MSBuildThisFileDirectory)packages\</PackageOutputPath>
<Owner>Mark Pflug</Owner>
<Authors>$(Owner)</Authors>
<PackageIconUrl>https://markpflug.github.io/Sylvan.png</PackageIconUrl>
<PackageIcon>Sylvan.png</PackageIcon>
<Copyright>© 2024 $(Owner)</Copyright>
<PackageLicenseFile>license.txt</PackageLicenseFile>
<LangVersion>12.0</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsNotAsErrors>CS1030;CA1835;$(WarningsNotAsErrors)</WarningsNotAsErrors>
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
<PackageProjectUrl>https://github.com/MarkPflug/Sylvan</PackageProjectUrl>
<ContinuousIntegrationBuild Condition="$(Configuration) == 'Release'">true</ContinuousIntegrationBuild>
<EmbedAllSources>true</EmbedAllSources>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<ProjectReadmeFile>$(MSBuildProjectDirectory)/PackageReadme.md</ProjectReadmeFile>
<PackageReadmeFile
Condition="Exists($(ProjectReadmeFile))">readme.md</PackageReadmeFile>
<IsTestProject Condition="$(MSBuildProjectName.EndsWith('.Tests')) == 'true'">true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)license.txt" Pack="true" PackagePath="">
<Visible>false</Visible>
</None>
<None Include="$(MSBuildThisFileDirectory)Sylvan.png" Pack="true" PackagePath="">
<Visible>false</Visible>
</None>
<None
Condition="Exists($(ProjectReadmeFile))"
Include="$(ProjectReadmeFile)"
Pack="true"
PackagePath="readme.md">
</None>
</ItemGroup>
<PropertyGroup Condition="$(IsTestProject) == true">
<NoWarn>xunit2013;CA2007;CA1849</NoWarn>
</PropertyGroup>
</Project>