Skip to content

Commit

Permalink
fix: nuget package directory (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
davideicardi authored Mar 24, 2023
1 parent dd37630 commit 65bdcba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Test .net core 7.0
run: dotnet test DynamicExpresso.sln --no-build --no-restore -c Release /p:Version=${{steps.calc_version.outputs.PROJECT_VERSION}} --verbosity normal -f net7.0
- name: Setup nuget sources
run: dotnet nuget add source --name github "https://nuget.pkg.github.com/davideicardi/index.json"
run: dotnet nuget add source --name github "https://nuget.pkg.github.com/dynamicexpresso/index.json"
- name: Pack
run: dotnet pack DynamicExpresso.sln --no-build --no-restore -c Release /p:Version=${{steps.calc_version.outputs.PROJECT_VERSION}} -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg
- name: Publish to github
Expand Down
6 changes: 3 additions & 3 deletions src/GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyCompany("Davide Icardi")]
[assembly: AssemblyCompany("Dynamic Expresso")]
[assembly: AssemblyProduct("Dynamic Expresso")]
[assembly: AssemblyDescription("C# expression interpreter/evaluator. See https://github.com/davideicardi/DynamicExpresso.")]
[assembly: AssemblyCopyright("Copyright © Davide Icardi 2015")]
[assembly: AssemblyDescription("C# expression interpreter/evaluator. See https://github.com/dynamicexpresso/DynamicExpresso.")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("1.3.1.0")]

0 comments on commit 65bdcba

Please sign in to comment.