-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: use shared Build.props for all projects
- Loading branch information
1 parent
a14fe4c
commit e8a331f
Showing
7 changed files
with
70 additions
and
240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<LangVersion>11.0</LangVersion> | ||
<Optimize>true</Optimize> | ||
<ImplicitUsings>true</ImplicitUsings> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<EnableNETAnalyzers>true</EnableNETAnalyzers> | ||
<DebugType>pdbonly</DebugType> | ||
<DebugSymbols>true</DebugSymbols> | ||
<VersionPrefix>4.0.0</VersionPrefix> | ||
<Authors>Oliver Booth</Authors> | ||
<Nullable>enable</Nullable> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<RepositoryUrl>https://github.com/oliverbooth/X10D</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<Description>Extension methods on crack.</Description> | ||
<PackageLicenseFile>LICENSE.md</PackageLicenseFile> | ||
<PackageIcon>branding_Icon.png</PackageIcon> | ||
<PackageIconUrl/> | ||
<PackageTags>dotnet extension-methods</PackageTags> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(SolutionDir)/CHANGELOG.md"))</PackageReleaseNotes> | ||
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> | ||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' == ''"> | ||
<Version>$(VersionPrefix)-$(VersionSuffix)</Version> | ||
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion> | ||
<FileVersion>$(VersionPrefix).0</FileVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' != ''"> | ||
<Version>$(VersionPrefix)-$(VersionSuffix).$(BuildNumber)</Version> | ||
<AssemblyVersion>$(VersionPrefix).$(BuildNumber)</AssemblyVersion> | ||
<FileVersion>$(VersionPrefix).$(BuildNumber)</FileVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(VersionSuffix)' == ''"> | ||
<Version>$(VersionPrefix)</Version> | ||
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion> | ||
<FileVersion>$(VersionPrefix).0</FileVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\branding_Icon.png"> | ||
<Pack>True</Pack> | ||
<PackagePath/> | ||
</None> | ||
<None Include="..\LICENSE.md"> | ||
<Pack>True</Pack> | ||
<PackagePath/> | ||
</None> | ||
<None Include="..\README.md"> | ||
<Pack>True</Pack> | ||
<PackagePath/> | ||
</None> | ||
<None Include="..\CHANGELOG.md"> | ||
<Pack>True</Pack> | ||
<PackagePath/> | ||
</None> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters