-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
50 lines (42 loc) · 1.94 KB
/
Directory.Build.props
File metadata and controls
50 lines (42 loc) · 1.94 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
39
40
41
42
43
44
45
46
47
48
49
50
<Project>
<PropertyGroup>
<Version>1.0.0</Version>
<Description>Cross-platform object validation framework</Description>
<PackageTags>Heleonix validation validator</PackageTags>
<Authors>Heleonix - Hennadii Lutsyshyn</Authors>
<Copyright>Copyright (c) Heleonix - Hennadii Lutsyshyn</Copyright>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Heleonix/Heleonix.Validation</RepositoryUrl>
<PackageLicenseUrl>https://github.com/Heleonix/Heleonix.Validation/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/Heleonix/Heleonix.Validation</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/Heleonix/documentation/master/images/heleonix-logos/Heleonix-logo-128x128.jpg</PackageIconUrl>
<IsTool>false</IsTool>
<IncludeSymbols>false</IncludeSymbols>
<IncludeSource>false</IncludeSource>
<NoPackageAnalysis>true</NoPackageAnalysis>
<ContentTargetFolders>.\</ContentTargetFolders>
<BuildOutputTargetFolder>.\</BuildOutputTargetFolder>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="..\..\stylecop.json" Link="stylecop.json" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
</Project>