-
Notifications
You must be signed in to change notification settings - Fork 4
/
Directory.Build.props
40 lines (35 loc) · 1.46 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
<Project>
<PropertyGroup>
<LangVersion>11.0</LangVersion>
<Nullable>enable</Nullable>
<AnalysisLevel>preview</AnalysisLevel>
<ImplicitUsings>enable</ImplicitUsings>
<AllFrameworks Condition="'$(OS)' == 'Windows_NT'">net472;net48;netcoreapp3.1;net6.0</AllFrameworks>
<AllFrameworks Condition="'$(OS)' != 'Windows_NT'">netcoreapp3.1;net6.0</AllFrameworks>
</PropertyGroup>
<ItemGroup>
<None Include="..\Images\Icon.png" Pack="true" PackagePath="" />
</ItemGroup>
<PropertyGroup>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
</PropertyGroup>
<PropertyGroup>
<Title>NosePlug</Title>
<Description>A library for testing code that smells</Description>
<Copyright>Copyright © 2021-$([System.DateTime]::Now.ToString("yyyy"))</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>Icon.png</PackageIcon>
<RepositoryUrl>https://github.com/Keboo/NosePlug</RepositoryUrl>
<Authors>Keboo</Authors>
</PropertyGroup>
<!-- Source Link Properties -->
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSource>true</EmbedUntrackedSource>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
</Project>