-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDirectory.Build.props
40 lines (37 loc) · 1.51 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
<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>
<Year>2024</Year>
<Copyright>© $(Year) $(Owner)</Copyright>
<PackageLicenseFile>license.txt</PackageLicenseFile>
<LangVersion>12</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsNotAsErrors>CS1030;CA1835;$(WarningsNotAsErrors)</WarningsNotAsErrors>
<RepositoryUrl>https://github.com/MarkPflug/Sylvan.BuildTools.Resources</RepositoryUrl>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<DeterministicSourcePaths>true</DeterministicSourcePaths>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<ReadmeFile>$(MSBuildThisFileDirectory)readme.md</ReadmeFile>
<PackageReadmeFile
Condition="Exists($(ReadmeFile))">readme.md</PackageReadmeFile>
</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($(ReadmeFile))"
Include="$(ReadmeFile)"
Pack="true"
PackagePath=""/>
</ItemGroup>
</Project>