forked from MarkPflug/Sylvan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
43 lines (36 loc) · 1.67 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
<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>© 2021 $(Owner)</Copyright>
<PackageLicenseFile>license.txt</PackageLicenseFile>
<LangVersion>9.0</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsNotAsErrors>CS1030;CA1835;$(WarningsNotAsErrors)</WarningsNotAsErrors>
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
<PackageProjectUrl>https://github.com/MarkPflug/Sylvan</PackageProjectUrl>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<EmbedAllSources>true</EmbedAllSources>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DeterministicSourcePaths>true</DeterministicSourcePaths>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<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>
</ItemGroup>
<PropertyGroup Condition="$(IsTestProject) == true">
<NoWarn>xunit2013</NoWarn>
</PropertyGroup>
</Project>