-
Notifications
You must be signed in to change notification settings - Fork 19
/
Directory.Build.props
56 lines (47 loc) · 2.17 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
55
56
<Project>
<PropertyGroup>
<RootNamespace>CasCap</RootNamespace>
<LangVersion>13.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<!--nullable we enable on a per project basis-->
<!--<Nullable>enable</Nullable>-->
<UserSecretsId>b08b24aa-70ab-4ecd-aef9-cce6d49054ec</UserSecretsId>
</PropertyGroup>
<PropertyGroup>
<Author>Alex Vincent</Author>
</PropertyGroup>
<PropertyGroup>
<!-- https://docs.microsoft.com/en-us/dotnet/core/tools/csproj -->
<!-- default for IsPackable is true, we change this to false here so that we must be explicit in each project when creating NuGet packages -->
<IsPackable>false</IsPackable>
<Authors>Alex Vincent</Authors>
<Copyright>Alex Vincent</Copyright>
<!-- <RestorePackagesWithLockFile>true</RestorePackagesWithLockFile> -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageProjectUrl>https://github.com/f2calv/yamlizr</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true' OR '$(TF_BUILD)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<!-- IDE1006 - suppress roslyn naming convention messages -->
<!-- IDE0079 - Remove unnecessary suppression -->
<!-- IDE0042 - Variable declaration can be deconstructed -->
<NoWarn>IDE1006;IDE0079;IDE0042</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<!-- suppress 'Unreachable code detected' -->
<NoWarn>CS0162</NoWarn>
</PropertyGroup>
<PropertyGroup>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>