-
Notifications
You must be signed in to change notification settings - Fork 4
/
Directory.Build.props
43 lines (36 loc) · 1.52 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>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
</ItemGroup>
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>Enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<Version>0.4.0</Version>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Authors>Eduardo Cáceres</Authors>
<PackageTags>Tools, Productivity, Zip, Combine</PackageTags>
<Tags>$(PackageTags)</Tags>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/eduherminio/dotnet-combine</PackageProjectUrl>
<RepositoryUrl>https://github.com/eduherminio/dotnet-combine</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<PropertyGroup Condition="'$(DeterministicBuild)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<None Include="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)\resources\icon.png'))" Pack="true" PackagePath="" />
</ItemGroup>
<PropertyGroup>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(MSBuildProjectName).xml</DocumentationFile>
<NoWarn>1591</NoWarn>
</PropertyGroup>
</Project>