-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
27 lines (26 loc) · 1.21 KB
/
Copy pathDirectory.Build.props
File metadata and controls
27 lines (26 loc) · 1.21 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
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<AnalysisLevel>latest</AnalysisLevel>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>Jon Sequeira</Authors>
<Copyright>Jon Sequeira</Copyright>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/jonsequitur/system-commandline-extensions</RepositoryUrl>
<VersionPrefix Condition="'$(VersionPrefix)' == ''">0.0.0</VersionPrefix>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
<IsPackable>true</IsPackable>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)HelpLine.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition="'$(IsTestProject)' == 'true'">
<IsPackable>false</IsPackable>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
</Project>