Skip to content

Commit ee93f4d

Browse files
committed
Added additional project
1 parent 46e4c57 commit ee93f4d

File tree

10 files changed

+78
-28
lines changed

10 files changed

+78
-28
lines changed

.github/workflows/release-preview.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
- name: ⚙️ Setup GIT versioning
2424
uses: dotnet/[email protected]
2525

26-
- name: ⚙️ Setup dotnet 5.0.x
26+
- name: ⚙️ Setup dotnet 6.0.x
2727
uses: actions/setup-dotnet@v1
2828
with:
29-
dotnet-version: '5.0.x'
29+
dotnet-version: '6.0.x'
3030

3131
- name: 🛠️ Building library in release mode
32-
run: dotnet pack src/ -c release -p:ContinuousIntegrationBuild=true
32+
run: dotnet pack -c release -p:ContinuousIntegrationBuild=true
3333

3434
- name: 🛠️ Upload library to GitHub Package Repository
3535
run: echo "TODO"

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ jobs:
5959
with:
6060
setAllVars: true
6161

62-
- name: ⚙️ Setup dotnet 5.0.x
62+
- name: ⚙️ Setup dotnet 6.0.x
6363
uses: actions/setup-dotnet@v1
6464
with:
65-
dotnet-version: '5.0.x'
65+
dotnet-version: '6.0.x'
6666

6767
- name: 🛠️ Update changelog
6868
uses: thomaseizinger/[email protected]

.github/workflows/verification.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,15 @@ jobs:
2626
with:
2727
fetch-depth: 0
2828

29+
- name: ⚙️ Setup dotnet 6.0.x
30+
uses: actions/setup-dotnet@v1
31+
with:
32+
dotnet-version: '6.0.x'
33+
2934
- name: ⚙️ Setup GIT versioning
3035
uses: dotnet/[email protected]
3136
with:
3237
setAllVars: true
3338

3439
- name: 🛠️ Building library in release mode
35-
run: dotnet build src
40+
run: dotnet build

src/Program.cs

-14
This file was deleted.

src/ProjectA/Program.cs

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
using System;
2+
3+
namespace ProjectA
4+
{
5+
class Program
6+
{
7+
}
8+
}

src/ProjectA/ProjectA.csproj

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net6.0</TargetFramework>
5+
<AssemblyName>ProjectA</AssemblyName>
6+
</PropertyGroup>
7+
8+
</Project>

src/ProjectB/Program.cs

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
using System;
2+
3+
namespace ProjectB
4+
{
5+
class Program
6+
{
7+
}
8+
}

src/ProjectB/ProjectB.csproj

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net6.0</TargetFramework>
5+
<AssemblyName>ProjectB</AssemblyName>
6+
<VersionSuffix>preview</VersionSuffix>
7+
</PropertyGroup>
8+
9+
</Project>

src/workflows.csproj

-8
This file was deleted.

workflows.sln

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30114.105
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{A24501FC-161B-4C00-9F13-0CBBE5BB0D9B}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProjectA", "src\ProjectA\ProjectA.csproj", "{811918FA-77A3-4638-AB22-A3288C140A6F}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProjectB", "src\ProjectB\ProjectB.csproj", "{BB64E9B9-E322-4EB1-8084-941037CF6D29}"
11+
EndProject
12+
Global
13+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
14+
Debug|Any CPU = Debug|Any CPU
15+
Release|Any CPU = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
21+
{811918FA-77A3-4638-AB22-A3288C140A6F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
22+
{811918FA-77A3-4638-AB22-A3288C140A6F}.Debug|Any CPU.Build.0 = Debug|Any CPU
23+
{811918FA-77A3-4638-AB22-A3288C140A6F}.Release|Any CPU.ActiveCfg = Release|Any CPU
24+
{811918FA-77A3-4638-AB22-A3288C140A6F}.Release|Any CPU.Build.0 = Release|Any CPU
25+
{BB64E9B9-E322-4EB1-8084-941037CF6D29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
26+
{BB64E9B9-E322-4EB1-8084-941037CF6D29}.Debug|Any CPU.Build.0 = Debug|Any CPU
27+
{BB64E9B9-E322-4EB1-8084-941037CF6D29}.Release|Any CPU.ActiveCfg = Release|Any CPU
28+
{BB64E9B9-E322-4EB1-8084-941037CF6D29}.Release|Any CPU.Build.0 = Release|Any CPU
29+
EndGlobalSection
30+
GlobalSection(NestedProjects) = preSolution
31+
{811918FA-77A3-4638-AB22-A3288C140A6F} = {A24501FC-161B-4C00-9F13-0CBBE5BB0D9B}
32+
{BB64E9B9-E322-4EB1-8084-941037CF6D29} = {A24501FC-161B-4C00-9F13-0CBBE5BB0D9B}
33+
EndGlobalSection
34+
EndGlobal

0 commit comments

Comments
 (0)