-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
49 lines (39 loc) · 2.06 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
<Project>
<PropertyGroup>
<OutputType>Library</OutputType>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<Nullable>enable</Nullable>
<LangVersion>11</LangVersion>
<PreferredUILang>en-US</PreferredUILang>
<NeutralLanguage>en</NeutralLanguage>
<OutputPath>..\..\bin\$(Configuration)\$(MSBuildProjectName)\</OutputPath>
<BaseIntermediateOutputPath>..\..\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<MSBuildProjectExtensionsPath>..\..\obj\$(MSBuildProjectName)\</MSBuildProjectExtensionsPath>
</PropertyGroup>
<PropertyGroup Condition="$(MSBuildProjectDirectoryNoRoot.Contains('src'))">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DocumentationFile>$(BaseIntermediateOutputPath)$(MSBuildProjectName).xml</DocumentationFile>
<Authors>Piotr Stenke</Authors>
<Company>Piotr Stenke</Company>
<PackageId>$(MSBuildProjectName)</PackageId>
<Product>$(MSBuildProjectName)</Product>
<Copyright>Copyright (c) Piotr Stenke - 2023</Copyright>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RepositoryType>git</RepositoryType>
<PackageIcon>logo-128.png</PackageIcon>
<PackageIconUrl>..\..\img\icons\logo-128.png</PackageIconUrl>
<RepositoryUrl>https://github.com/piotrstenke/SejmNet/tree/master</RepositoryUrl>
<ProjectUrl>https://github.com/piotrstenke/SejmNet/tree/master</ProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<DebugType>pdbonly</DebugType>
<Deterministic>true</Deterministic>
</PropertyGroup>
<ItemGroup Condition="$(MsBuildProjectDirectoryNoRoot.Contains('src'))">
<None Include="..\..\img\icons\logo-128.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
</Project>