-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDirectory.Build.props
47 lines (42 loc) · 1.92 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
44
45
46
47
<Project>
<PropertyGroup>
<Version>1.0.5</Version>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<PackageReadmeFile>README.md</PackageReadmeFile>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
</PropertyGroup>
<PropertyGroup Label="Workaround flaky tests">
<!-- Work around flaky tests https://github.com/warappa/OpenTransSharp/issues/15 -->
<AccelerateBuildsInVisualStudio>false</AccelerateBuildsInVisualStudio>
</PropertyGroup>
<PropertyGroup Label="Shared NuGet Package Information">
<PackageLicenseExpression>MPL-2.0</PackageLicenseExpression>
<Authors>David Rettenbacher</Authors>
<Company />
<Copyright>Copyright © David Rettenbacher 2021-2023</Copyright>
<PackageProjectUrl>https://github.com/warappa/OpenTransSharp</PackageProjectUrl>
<RepositoryUrl>https://github.com/warappa/OpenTransSharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>bmecat bmecat-2005 opentrans opentrans-21</PackageTags>
<PackageReleaseNotes>
1.0.5
- #19: Quotation document - email deserialization
- #21: Fix serialization of DATETIME in CATALOG
</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup Label="SourceLink Support">
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup Label="ReadMe">
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>