-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdir.props
31 lines (26 loc) · 1.18 KB
/
dir.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
<Project ToolsVersion="14.0" DefaultTargets="Build"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project=".\version.props" />
<PropertyGroup>
<Authors>Vadim Orekhov</Authors>
<Product>CaseExtensions</Product>
<Description></Description>
<Copyright>Vadim Orekhov</Copyright>
<PackageDescription>Change any string case to PascalCase/camelCase/kebab-case/snake_case/Train-Case</PackageDescription>
<RepositoryUrl>https://github.com/vad3x/case-extensions</RepositoryUrl>
<VersionSuffix Condition="'$(BuildNumber)' != ''">-beta$(BuildNumber)</VersionSuffix>
<AssemblyVersion>$(ReleaseVersion)</AssemblyVersion>
<Version>$(AssemblyVersion)$(VersionSuffix)</Version>
<TestFiles>**/*.Spec.cs; **/*.Test.cs</TestFiles>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<CoverletOutput>../../coverage/</CoverletOutput>
<CollectCoverage>true</CollectCoverage>
<IncludeTestAssembly>true</IncludeTestAssembly>
</PropertyGroup>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
</Project>