-
Notifications
You must be signed in to change notification settings - Fork 683
/
Directory.Build.props
54 lines (44 loc) · 2.05 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
48
49
50
51
52
53
54
<Project>
<!-- Package properties -->
<PropertyGroup>
<Authors>Loic Sharma</Authors>
<Copyright>Copyright (c) Loic Sharma 2021</Copyright>
<Product>BaGet</Product>
<PackageIcon>packageIcon.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageVersion Condition="'$(PackageVersion)' == ''">0.1.0-prerelease</PackageVersion>
<PackageProjectUrl>https://loic-sharma.github.io/BaGet/</PackageProjectUrl>
</PropertyGroup>
<!-- Compiler properties -->
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<LangVersion>7.2</LangVersion>
<!-- Don't warn if there are missing XMl comment for publicly visible type or member-->
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<!-- Debugging properties -->
<PropertyGroup>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<DebugType>portable</DebugType>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Condition="'$(CI)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<!-- NuGet dependencies shared across projects -->
<PropertyGroup>
<MicrosoftAspNetCorePackageVersion>3.1.18</MicrosoftAspNetCorePackageVersion>
<MicrosoftEntityFrameworkCorePackageVersion>3.1.18</MicrosoftEntityFrameworkCorePackageVersion>
<MicrosoftExtensionsPackageVersion>3.1.18</MicrosoftExtensionsPackageVersion>
<NuGetPackageVersion>5.10.0</NuGetPackageVersion>
</PropertyGroup>
<ItemGroup Condition="'$(DOTNET_RUNNING_IN_CONTAINER)' == ''">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup>
<None Include="../packageIcon.png" Pack="true" PackagePath="" Visible="false" />
</ItemGroup>
</Project>