Skip to content

Commit 0459a8a

Browse files
committed
.net 6 self-contained
1 parent d4e914f commit 0459a8a

8 files changed

Lines changed: 1071 additions & 9 deletions

File tree

.github/workflows/aurora-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- name: Archive Build
8181
shell: pwsh
8282
run: |
83-
Compress-Archive .\Build\Release\* Aurora-v${{steps.buildnumber.outputs.build_number}}.zip
83+
Compress-Archive .\Build\Release\win10-x64\* Aurora-v${{steps.buildnumber.outputs.build_number}}.zip
8484
8585
- name: Installer Release
8686
uses: softprops/action-gh-release@v1

.github/workflows/aurora-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- name: Archive Build
8888
shell: pwsh
8989
run: |
90-
Compress-Archive .\Build\Release\* Aurora-v${{steps.buildnumber.outputs.build_number}}.zip
90+
Compress-Archive .\Build\Release\win10-x64\* Aurora-v${{steps.buildnumber.outputs.build_number}}.zip
9191
9292
- name: Release
9393
uses: softprops/action-gh-release@v1

Installer/installer.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{
4141

4242
[Files]
4343
//Source: "unzipper.dll"; Flags: dontcopy
44-
Source: "..\Build\Release\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
44+
Source: "..\Build\Release\win10-x64\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
4545
//AfterInstall: ExtractMe('{app}\Aurora-v{#Version}.zip', '{app}')
4646
Source: "vcredist_x86.exe"; DestDir: "{tmp}"; Flags: deleteafterinstall
4747
Source: "vcredist_x64.exe"; DestDir: "{tmp}"; Flags: deleteafterinstall

Project-Aurora/Aurora-Updater/Aurora-Updater.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0-windows10.0.22000.0</TargetFramework>
5-
<Platforms>AnyCPU;x64</Platforms>
4+
<TargetFramework>net6.0-windows10.0.17763.0</TargetFramework>
5+
<Platforms>x64</Platforms>
6+
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
67
<OutputType>WinExe</OutputType>
78
<PlatformTarget>x64</PlatformTarget>
89
<UseWindowsForms>true</UseWindowsForms>

Project-Aurora/ColorBox/ColorBox.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
22

33
<PropertyGroup>
4-
<TargetFramework>net48</TargetFramework>
4+
<TargetFramework>net6.0-windows10.0.17763.0</TargetFramework>
55
<OutputType>Library</OutputType>
66
<AppDesignerFolder>Properties</AppDesignerFolder>
77
<RootNamespace>ColorBox</RootNamespace>
@@ -14,7 +14,9 @@
1414
<Copyright>Copyright © NCore Softwares Pvt. Ltd. 2013</Copyright>
1515
<AssemblyVersion>1.1</AssemblyVersion>
1616
<FileVersion>1.1</FileVersion>
17-
<Platforms>AnyCPU;x64</Platforms>
17+
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
18+
<Platforms>x64</Platforms>
19+
<PlatformTarget>x64</PlatformTarget>
1820
</PropertyGroup>
1921

2022
<PropertyGroup>

Project-Aurora/Plugin-Example/Plugin-Example.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0-windows10.0.22000.0</TargetFramework>
5-
<Platforms>AnyCPU;x64</Platforms>
4+
<TargetFramework>net6.0-windows10.0.17763.0</TargetFramework>
5+
<Platforms>x64</Platforms>
6+
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
67
<OutputType>Library</OutputType>
78
<AppDesignerFolder>Properties</AppDesignerFolder>
89
<RootNamespace>Plugin_Example</RootNamespace>

Project-Aurora/Project-Aurora/Project-Aurora.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>net6.0-windows10.0.17763.0</TargetFramework>
55
<Platforms>x64</Platforms>
6+
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
67
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
78
<WarningLevel>0</WarningLevel>
89
<OutputType>WinExe</OutputType>

0 commit comments

Comments
 (0)