working on scaffolding a new dotnet intro sample for #531 (#536)

* interim stash

* interim stash

* interim checkpoint

* broken stash

* whoops

* merge sln files

* fix a bunch of refactoring errors

* moving more to core vs samples

* interim

* fixup the devteam sample

* fix ci

* fixup soln file

* trying to fix ci

* trying to fix ci

* adding back

* still trying

* recreate

* next step

* adding it back

* trying to fix

* Rename Autogen -> AutoGen (#567)

* Add transparency faqs (#566)

* remove Autogen

* add AutoGen back

---------

Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com>

---------

Co-authored-by: Xiaoyun Zhang <xiaoyuz@microsoft.com>
Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com>
This commit is contained in:
Ryan Sweet
2024-09-18 18:41:44 -07:00
committed by GitHub
parent f5a13627e2
commit 1edf5cfe9c
81 changed files with 1301 additions and 233 deletions

View File

@@ -1,4 +1,4 @@
name: '[AGNext nuget] Build and test'
name: '[AutoGen nuget] Build and test'
on:
workflow_call:
@@ -24,8 +24,8 @@ jobs:
- name: Install .NET Aspire workload
run: dotnet workload install aspire
- name: Restore dependencies
run: dotnet restore
run: dotnet restore AutoGen.sln
- name: Build
run: dotnet build --no-restore
run: dotnet build AutoGen.sln
- name: Test
run: dotnet test --no-build --verbosity normal
run: dotnet test --no-build --verbosity normal AutoGen.sln

View File

@@ -1,4 +1,4 @@
name: '[AGNext nuget] Publish nuget package'
name: '[AutoGen nuget] Publish nuget package'
on:
workflow_call:
@@ -31,5 +31,5 @@ jobs:
- name: Publish package
run: |
cd dotnet/src/${{ inputs.path }}
dotnet pack -o packages /p:PackageVersion=${{ inputs.version-prefix }}-alpha.${{ inputs.version-suffix }}
dotnet pack -o packages /p:PackageVersion=${{ inputs.version-prefix }}-alpha.${{ inputs.version-suffix }}
dotnet nuget push $GITHUB_WORKSPACE/dotnet/src/${{ inputs.path }}/packages/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json

View File

@@ -1,4 +1,4 @@
name: '[AGNext nuget] Publish all packages'
name: '[AutoGen nuget] Publish all packages'
on:
push: