Skip to content

Commit eb66db6

Browse files
committed
Refurbished old build test and intentionally added a warning to build.
1 parent b9debec commit eb66db6

File tree

5 files changed

+8
-17
lines changed

5 files changed

+8
-17
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
- uses: actions/upload-artifact@v4
2424
with:
2525
name: nuget-package
26-
path: GitHubActionsTest/bin/Release/*.nupkg
26+
path: artifacts/package/release/*.nupkg

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
.vs/
2-
bin/
3-
obj/
4-
/build*/
5-
packages/
2+
/artifacts/

Directory.Build.props

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<Project>
2+
<PropertyGroup>
3+
<UseArtifactsOutput>true</UseArtifactsOutput>
4+
</PropertyGroup>
5+
</Project>

Directory.Build.targets

Lines changed: 0 additions & 11 deletions
This file was deleted.

GitHubActionsTest/GitHubActionsTest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
</PropertyGroup>
77

0 commit comments

Comments
 (0)