Skip to content

Commit

Permalink
Migrate to /artifacts folder
Browse files Browse the repository at this point in the history
  • Loading branch information
seclerp committed Nov 1, 2023
1 parent 9352ca9 commit b31d621
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 📝 Fetch Sources
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: 🛠 Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
global-json-file: src/global.json
- name: 🏗 Restore dependencies
run: dotnet restore
- name: 🏗 Build
Expand Down
3 changes: 2 additions & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<!-- Global project and StyleCop Analyzers configuration -->
<PropertyGroup>
<Version>1.0.0-preview1</Version>
<Version>1.0.0-preview2</Version>
<Authors>seclerp</Authors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>

Expand All @@ -10,5 +10,6 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<UseArtifactsOutput>true</UseArtifactsOutput>
</PropertyGroup>
</Project>
7 changes: 7 additions & 0 deletions src/global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sdk": {
"version": "8.0.0",
"rollForward": "latestMajor",
"allowPrerelease": true
}
}

0 comments on commit b31d621

Please sign in to comment.