-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
33 lines (28 loc) · 1.29 KB
/
Copy pathDirectory.Build.props
File metadata and controls
33 lines (28 loc) · 1.29 KB
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
<Project>
<!-- Shared NuGet package metadata for the JsonSubTypes packages.
Versions stay independent per project (see each .csproj). -->
<PropertyGroup>
<Authors>Emmanuel Counasse</Authors>
<Company>manuc66</Company>
<Copyright>manuc66</Copyright>
<RepositoryUrl>https://github.com/manuc66/JsonSubTypes</RepositoryUrl>
<PackageProjectUrl>https://github.com/manuc66/JsonSubTypes</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>See in https://github.com/manuc66/JsonSubTypes/releases</PackageReleaseNotes>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<!-- Deterministic builds + Source Link for both packages -->
<PropertyGroup>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.400" PrivateAssets="all" />
</ItemGroup>
</Project>