-
Notifications
You must be signed in to change notification settings - Fork 6
/
Directory.Build.props
34 lines (34 loc) · 1.56 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
<Project>
<PropertyGroup>
<VersionPrefix>1.0.0</VersionPrefix>
<Copyright>2021 Dean Ward</Copyright>
<Features>strict</Features>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Authors>Dean Ward</Authors>
<PackageProjectUrl>https://github.com/deanward81/AirDropAnywhere</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/deanward81/AirDropAnywhere</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
<DefaultLanguage>en-GB</DefaultLanguage>
<IncludeSymbols>false</IncludeSymbols>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IsPackable>false</IsPackable>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<ProjectCapability Include="DynamicDependentFile" />
<ProjectCapability Include="DynamicFileNesting" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" PrivateAssets="all" IncludeAssets="runtime;build;native;contentfiles;analyzers" />
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" IncludeAssets="runtime;build;native;contentfiles;analyzers" />
</ItemGroup>
</Project>