-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDirectory.Build.props
47 lines (41 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
<Project>
<PropertyGroup>
<Authors>Amadeusz Sadowski</Authors>
<Company>Amadevus</Company>
<Copyright>Copyright © Amadeusz Sadowski</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://amis92.github.io/RecordGenerator</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/amis92/RecordGenerator/master/docs/logo.png</PackageIconUrl>
<PackageIconPath>$(MSBuildThisFileDirectory)docs/logo.png</PackageIconPath>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/amis92/RecordGenerator</RepositoryUrl>
<ReleaseNotes>https://github.com/amis92/RecordGenerator/blob/master/CHANGELOG.md</ReleaseNotes>
<PackageTags>record immutable attribute generator generators generation amadevus recordgenerator code codegen codegenerator codegeneration</PackageTags>
</PropertyGroup>
<PropertyGroup>
<LangVersion>7.3</LangVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<MSBuildTreatWarningsAsErrors Condition=" '$(Configuration)' == Release ">true</MSBuildTreatWarningsAsErrors>
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)obj/$(MSBuildProjectName)/</BaseIntermediateOutputPath>
<OutputPath>$(MSBuildThisFileDirectory)bin/$(MSBuildProjectName)/$(Configuration)/</OutputPath>
<PackageOutputPath>$(MSBuildThisFileDirectory)bin/Packages/$(Configuration)/</PackageOutputPath>
<IsTestingOnlyProject>$(MSBuildProjectName.Contains('Test'))</IsTestingOnlyProject>
<NoWarn>$(NoWarn);CS1591;NU5105</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" !$(IsTestingOnlyProject) ">
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EnableSourceLink>true</EnableSourceLink>
</PropertyGroup>
<PropertyGroup Condition=" $(IsTestingOnlyProject) ">
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Include="$(PackageIconPath)" Pack="true" PackagePath="$(PackageIcon)" />
</ItemGroup>
</Project>