-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
62 lines (46 loc) · 2.36 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
51
52
53
54
55
56
57
58
59
60
61
62
<Project>
<PropertyGroup>
<OutputType>Library</OutputType>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<Nullable>enable</Nullable>
<LangVersion>9</LangVersion>
<PreferredUILang>en-US</PreferredUILang>
<NeutralLanguage>en</NeutralLanguage>
</PropertyGroup>
<PropertyGroup Condition="!$(MSBuildProjectDirectoryNoRoot.Contains('samples'))">
<OutputPath>..\..\bin\$(Configuration)\$(MSBuildProjectName)\</OutputPath>
<BaseIntermediateOutputPath>..\..\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<MSBuildProjectExtensionsPath>..\..\obj\$(MSBuildProjectName)\</MSBuildProjectExtensionsPath>
</PropertyGroup>
<PropertyGroup Condition="$(MSBuildProjectDirectoryNoRoot.Contains('src'))">
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>Piotr Stenke</Authors>
<Company>Piotr Stenke</Company>
<PackageId>$(MSBuildProjectName)</PackageId>
<Product>$(MSBuildProjectName)</Product>
<Copyright>Copyright (c) Piotr Stenke - 2021</Copyright>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RepositoryType>git</RepositoryType>
<PackageIcon>Durian-pkg-icon-128.png</PackageIcon>
<PackageIconUrl>..\..\img\icons\Durian-pkg-icon-128.png</PackageIconUrl>
<RepositoryUrl>https://github.com/piotrstenke/Durian</RepositoryUrl>
<ProjectUrl>https://github.com/piotrstenke/Durian/tree/master/${MSBuildProjectName)</ProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DocumentationFile>$(BaseIntermediateOutputPath)$(MSBuildProjectName).xml</DocumentationFile>
<DebugType>pdbonly</DebugType>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition="$(MSBuildProjectDirectoryNoRoot.Contains('tests'))">
<TargetFramework>net5.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup Condition="$(MsBuildProjectDirectoryNoRoot.Contains('src'))">
<None Include="..\..\img\icons\Durian-pkg-icon-128.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
</Project>