-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDirectory.build.props
35 lines (31 loc) · 1.36 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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<DebugSymbols>True</DebugSymbols>
<DebugType>portable</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup>
<Description>An awesome app for awesome stuff</Description>
<Authors>Todor Todorov</Authors>
<Copyright>Copyright $([System.DateTime]::Now.Year) Todor Todorov</Copyright>
<PackageTags>awesome app</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/totollygeek/awesome-app</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<NoWarn>CS0649;CS0169;CS1591</NoWarn>
</PropertyGroup>
<ItemGroup Condition="">
<None Include="..\..\images\icon.png">
<Pack>True</Pack>
<PackagePath />
<Visible>false</Visible>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
</ItemGroup>
</Project>