Skip to content

Commit

Permalink
Update Directory.Build.props
Browse files Browse the repository at this point in the history
  • Loading branch information
pwelter34 committed Apr 25, 2024
1 parent 0be5e2b commit 7d54749
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
<Project>

<PropertyGroup Label="Package">
<Product>Blazone</Product>
<Description>Blazone is a simple authentication module for Blazor</Description>
<Copyright>Copyright © $([System.DateTime]::Now.ToString(yyyy)) LoreSoft</Copyright>
<Authors>LoreSoft</Authors>
<NeutralLanguage>en-US</NeutralLanguage>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageTags>blazor;authentication</PackageTags>
<PackageProjectUrl>https://github.com/loresoft/Blazone</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/loresoft/Blazone</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<NoWarn>1591</NoWarn>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -23,7 +22,17 @@
<EnableTrimAnalyzer>false</EnableTrimAnalyzer>
</PropertyGroup>

<PropertyGroup>
<PropertyGroup Label="Debug">
<DebugType>embedded</DebugType>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>

<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<PropertyGroup Label="Options">
<DefaultLanguage>en-US</DefaultLanguage>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<NoWarn>1591</NoWarn>
Expand Down

0 comments on commit 7d54749

Please sign in to comment.