Skip to content

Commit

Permalink
Remove NuGet package attributes
Browse files Browse the repository at this point in the history
- This is a Blazor project, the NuGet packages attributes is not used and might be cause of interference with publish.
  • Loading branch information
sondreb committed Dec 12, 2024
1 parent 9617590 commit 1d22425
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
shell: bash

- name: Publish
run: dotnet publish -c Release -r ${{matrix.runtime}} /p:Version=${{ env.VERSION }}.${{ github.run_number }} /p:EnableUnsafeBinaryFormatterSerialization=true /p:EnableUnsafeUTF7Encoding=true /p:InvariantGlobalization=true /p:DebugType=embedded /p:DebugSymbols=true -v m -o publish ${{env.PROJECT_PATH}}
run: dotnet publish -c Release -r ${{matrix.runtime}} /p:Version=${{ env.VERSION }}.${{ github.run_number }} -v m -o publish ${{env.PROJECT_PATH}}
env:
matrix.runtime: ${{ matrix.os == 'windows-latest' && 'win-x64' || matrix.os == 'ubuntu-latest' && 'linux-x64' || 'osx-x64' }}

Expand Down
14 changes: 0 additions & 14 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,6 @@
<PropertyGroup>
<Version>0.0.75</Version>
<TargetFramework>net9.0</TargetFramework>
<Authors>Blockcore</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://www.blockcore.net</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>git://github.com/block-core/angor</RepositoryUrl>
<PackageIcon></PackageIcon>
<PackageIconUrl>https://www.blockcore.net/assets/blockcore-256x256.png</PackageIconUrl>
<PackageTags>blockchain;cryptocurrency;crypto;C#;.NET;bitcoin;blockcore</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<DebugType>portable</DebugType>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 1d22425

Please sign in to comment.