This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDirectory.Build.props
50 lines (43 loc) · 1.87 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
<Project>
<PropertyGroup>
<Product>Tassle</Product>
<VersionPrefix>1.2.0</VersionPrefix>
<VersionSuffix Condition=" '$(VersionSuffix)' == '' ">0</VersionSuffix>
<Version>$(VersionPrefix).$(VersionSuffix)</Version>
<Authors>Eser Ozvataf</Authors>
<Copyright></Copyright>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseUrl>https://github.com/eserozvataf/tassle/blob/development/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/eserozvataf/tassle</PackageProjectUrl>
<PackageIconUrl></PackageIconUrl>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageTags></PackageTags>
<RepositoryUrl>https://github.com/eserozvataf/tassle</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)TassleRuleSet.ruleset</CodeAnalysisRuleSet>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<IncludeSource>false</IncludeSource>
<IncludeBuildOutput>true</IncludeBuildOutput>
<IncludeContentInPack>true</IncludeContentInPack>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<IncludeSymbols>true</IncludeSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.*" developmentDependency="true" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.*" developmentDependency="true" />
</ItemGroup>
<ItemGroup>
<Compile Include="src/**/*.cs" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="$(MSBuildThisFileDirectory)stylecop.json" />
</ItemGroup>
</Project>