-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDirectory.Build.props
31 lines (30 loc) · 1.42 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<NoWarn>CS1591</NoWarn>
<Version>8.2.0</Version>
<AssemblyVersion>1.0</AssemblyVersion>
<AssemblyInformationalVersion>$(Version)</AssemblyInformationalVersion>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Authors>Llewellyn Falco & Jay Bazuzi</Authors>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Copyright>Copyright $([System.DateTime]::UtcNow.ToString(yyyy)) Llewellyn Falco & Jay Bazuzi. All rights reserved.</Copyright>
<PackageTags>async pipeline</PackageTags>
<PackageIcon>pipeline_icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/refactoring-pipelines/Pipelines</PackageProjectUrl>
<PackageOutputPath>$(SolutionDir)nuget_packages</PackageOutputPath>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
<!-- <PackageReference Condition="$(Configuration) == 'Release'" Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19270-01" PrivateAssets="All" /> -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<None Include="..\docs\images\pipeline_icon.png">
<Pack>True</Pack>
<PackagePath />
</None>
</ItemGroup>
</Project>