-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
28 lines (24 loc) · 1.13 KB
/
Directory.Build.props
File metadata and controls
28 lines (24 loc) · 1.13 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
<Project>
<PropertyGroup>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
<VersionPrefix>0.1.3</VersionPrefix>
</PropertyGroup>
<!-- Shared NuGet package metadata. Inert for projects with IsPackable=false. -->
<PropertyGroup>
<Authors>tavanuka</Authors>
<Company>tavanuka</Company>
<Copyright>Copyright (c) tavanuka</Copyright>
<PackageProjectUrl>https://github.com/tavanuka/FeiertageApi.NET</PackageProjectUrl>
<RepositoryUrl>https://github.com/tavanuka/FeiertageApi.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
</Project>