File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11
11
runs-on : windows-latest
12
12
steps :
13
13
- uses : actions/checkout@v3
14
- - name : Setup .NET Core
14
+ - name : Setup .NET
15
15
uses : actions/setup-dotnet@v3
16
16
with :
17
17
dotnet-version : 6
32
32
if : github.event_name == 'push'
33
33
steps :
34
34
- uses : actions/checkout@v3
35
- - name : Setup .NET Core
35
+ - name : Setup .NET
36
36
uses : actions/setup-dotnet@v3
37
37
with :
38
38
dotnet-version : 6
57
57
needs : pack
58
58
if : github.event_name == 'push'
59
59
steps :
60
- - name : Setup .NET Core
60
+ - name : Setup .NET
61
61
uses : actions/setup-dotnet@v3
62
62
with :
63
63
dotnet-version : 6
Original file line number Diff line number Diff line change 1
1
dotnet build -- configuration release .\src\Auth\Auth.csproj
2
2
dotnet build -- configuration release .\src\Auth.UI\Auth.UI.csproj
3
3
dotnet build -- configuration release .\src\Auth.UI.WPF\Auth.UI.WPF.csproj
4
+ dotnet build -- configuration release .\src\Auth.UI.WinUI3\Auth.UI.WinUI3.csproj
4
5
msbuild / restore / p:Configuration= Release .\src\Auth.UI.UWP\Auth.UI.UWP.csproj
Original file line number Diff line number Diff line change 1
1
dotnet build -- configuration release .\samples\Console\Auth.Console.Sample.csproj
2
2
dotnet build -- configuration release .\samples\WPF\Auth.WPF.Sample.csproj
3
+ dotnet build -- configuration release .\samples\WinUI3\Auth.WinUI3.Sample.csproj
3
4
msbuild / restore / p:Configuration= Debug .\samples\UWP\Auth.UWP.Sample.csproj
Original file line number Diff line number Diff line change @@ -7,11 +7,13 @@ if ($preview) {
7
7
write " Creating preview packages with version suffix $suffix "
8
8
dotnet pack -- configuration release -- output $output -- version- suffix= $suffix .\src\Auth\Auth.csproj
9
9
dotnet pack -- configuration release -- output $output -- version- suffix= $suffix .\src\Auth.UI.WPF\Auth.UI.WPF.csproj
10
+ dotnet pack -- configuration release -- output $output -- version- suffix= $suffix .\src\Auth.UI.WinUI3\Auth.UI.WinUI3.csproj
10
11
msbuild / t:restore, pack / p:Configuration= Release / p:PackageOutputPath= $output / p:VersionSuffix= $suffix .\src\Auth.UI.UWP\Auth.UI.UWP.csproj
11
12
} else {
12
13
$version = $ (git describe -- tags -- abbrev= 0 ).substring(1 )
13
14
write " Creating packages with tag version $version "
14
15
dotnet pack -- configuration release -- output $output - p:version= $version .\src\Auth\Auth.csproj
15
16
dotnet pack -- configuration release -- output $output - p:version= $version .\src\Auth.UI.WPF\Auth.UI.WPF.csproj
17
+ dotnet pack -- configuration release -- output $output - p:version= $version .\src\Auth.UI.WinUI3\Auth.UI.WinUI3.csproj
16
18
msbuild / t:restore, pack / p:Configuration= Release / p:PackageOutputPath= $output / p:Version= $version .\src\Auth.UI.UWP\Auth.UI.UWP.csproj
17
19
}
You can’t perform that action at this time.
0 commit comments