Skip to content

Commit fc2d26e

Browse files
committed
fix(ci): track publish profiles for release workflow
1 parent cae2764 commit fc2d26e

3 files changed

Lines changed: 29 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ Installer/Output/
102102
*.[Pp]ublish.xml
103103
*.azurePubxml
104104
*.pubxml
105+
!Properties/PublishProfiles/WinX64-SingleFile.pubxml
106+
!Properties/PublishProfiles/WinX64-ReadyToRun.pubxml
105107
*.publishproj
106108
PublishScripts/
107109

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<Project>
2+
<PropertyGroup>
3+
<PublishProtocol>FileSystem</PublishProtocol>
4+
<Configuration>Release</Configuration>
5+
<TargetFramework>net8.0-windows10.0.22000.0</TargetFramework>
6+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
7+
<SelfContained>true</SelfContained>
8+
<PublishSingleFile>false</PublishSingleFile>
9+
<PublishReadyToRun>true</PublishReadyToRun>
10+
<PublishTrimmed>false</PublishTrimmed>
11+
<PublishDir>artifacts\release\readytorun\</PublishDir>
12+
</PropertyGroup>
13+
</Project>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Project>
2+
<PropertyGroup>
3+
<PublishProtocol>FileSystem</PublishProtocol>
4+
<Configuration>Release</Configuration>
5+
<TargetFramework>net8.0-windows10.0.22000.0</TargetFramework>
6+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
7+
<SelfContained>true</SelfContained>
8+
<PublishSingleFile>true</PublishSingleFile>
9+
<PublishReadyToRun>false</PublishReadyToRun>
10+
<PublishTrimmed>false</PublishTrimmed>
11+
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
12+
<PublishDir>artifacts\release\singlefile\</PublishDir>
13+
</PropertyGroup>
14+
</Project>

0 commit comments

Comments
 (0)