-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
45 lines (40 loc) · 2.1 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
<Project>
<PropertyGroup>
<OutputType>Library</OutputType>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<OutputPath>..\..\bin\$(Configuration)\$(MSBuildProjectName)\</OutputPath>
<BaseIntermediateOutputPath>..\..\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<MSBuildProjectExtensionsPath>..\..\obj\$(MSBuildProjectName)\</MSBuildProjectExtensionsPath>
<Nullable>enable</Nullable>
<LangVersion>9.0</LangVersion>
<PreferredUILang>en-US</PreferredUILang>
<NeutralLanguage>en</NeutralLanguage>
</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>logo-64.png</PackageIcon>
<PackageIconUrl>..\..\img\logo-64.png</PackageIconUrl>
<RepositoryUrl>https://github.com/piotrstenke/JollyQuotes</RepositoryUrl>
<ProjectUrl>https://github.com/piotrstenke/JollyQuotes</ProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DocumentationFile>$(BaseIntermediateOutputPath)$(MSBuildProjectName).xml</DocumentationFile>
<DebugType>embedded</DebugType>
<Deterministic>true</Deterministic>
</PropertyGroup>
<ItemGroup Condition="$(MsBuildProjectDirectoryNoRoot.Contains('src'))">
<None Include="..\..\img\logo-64.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
</Project>