Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamess-Lucass committed Jul 13, 2024
1 parent e870042 commit 89c2f59
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
build:
dotnet build ./src/GoatQuery/src --configuration Release
dotnet build ./src/GoatQuery.AspNetCore/src --configuration Release

package:
dotnet pack ./src/GoatQuery/src --configuration Release -p:Version=0.0.1-local
dotnet pack ./src/GoatQuery.AspNetCore/src --configuration Release -p:Version=0.0.1-local

publish-local:
mkdir -p ~/.nuget/local-packages
dotnet nuget push ./src/GoatQuery/src/bin/Release/GoatQuery.0.0.1-local.nupkg -s ~/.nuget/local-packages
dotnet nuget push ./src/GoatQuery.AspNetCore/src/bin/Release/GoatQuery.AspNetCore.0.0.1-local.nupkg -s ~/.nuget/local-packages

2 changes: 1 addition & 1 deletion src/GoatQuery.AspNetCore/src/GoatQuery.AspNetCore.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<LangVersion>11.0</LangVersion>
<RootNamespace>GoatQuery.AspNetCore</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down

0 comments on commit 89c2f59

Please sign in to comment.