-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
38 lines (34 loc) · 1.66 KB
/
Directory.Build.props
File metadata and controls
38 lines (34 loc) · 1.66 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
34
35
36
37
38
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<PropertyGroup>
<!-- Host EXE version. Plugin packages each declare their own
<Version> in their csproj so they're decoupled from this. -->
<Version>0.6.0</Version>
<Authors>ProxyLayer</Authors>
<Product>AzureTray</Product>
<Copyright>Copyright (c) ProxyLayer</Copyright>
<Description>Windows system tray app for Azure operations across multiple tenants, with a pluggable extension system.</Description>
<RepositoryUrl>https://github.com/Proxylayer/AzureTray</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/Proxylayer/AzureTray</PackageProjectUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<!-- Pack the repo-root LICENSE file into every produced .nupkg. The
Pack="true" metadata is a no-op on non-packable projects, so this
can sit unconditionally in the shared props. -->
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)LICENSE" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
</Project>