forked from BeyondDimension/SteamTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
150 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/ST.Client.Desktop.Avalonia.App/Properties/PublishProfiles/fd-linux-arm.pubxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
https://go.microsoft.com/fwlink/?LinkID=208121. | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<DefineConstants>FRAMEWORK_DEPENDENT;PUBLISH;LINUX;$(DefineConstants)</DefineConstants> | ||
<Configuration>Release</Configuration> | ||
<Platform>ARM</Platform> | ||
<PublishDir>bin\Release\Publish\FrameworkDependent\linux-arm</PublishDir> | ||
<PublishProtocol>FileSystem</PublishProtocol> | ||
<!-- Linux distributions running on ARM like Raspbian on Raspberry Pi Model 2+ --> | ||
<RuntimeIdentifier>linux-arm</RuntimeIdentifier> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<SelfContained>false</SelfContained> | ||
<PublishSingleFile>true</PublishSingleFile> | ||
<PublishReadyToRun>true</PublishReadyToRun> | ||
<DebugType>none</DebugType> | ||
<DebugSymbols>false</DebugSymbols> | ||
</PropertyGroup> | ||
</Project> |
21 changes: 21 additions & 0 deletions
21
src/ST.Client.Desktop.Avalonia.App/Properties/PublishProfiles/fd-linux-arm64.pubxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
https://go.microsoft.com/fwlink/?LinkID=208121. | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<DefineConstants>FRAMEWORK_DEPENDENT;PUBLISH;LINUX;$(DefineConstants)</DefineConstants> | ||
<Configuration>Release</Configuration> | ||
<Platform>ARM64</Platform> | ||
<PublishDir>bin\Release\Publish\FrameworkDependent\linux-arm64</PublishDir> | ||
<PublishProtocol>FileSystem</PublishProtocol> | ||
<!-- Linux distributions running on 64-bit ARM like Ubuntu Server 64-bit on Raspberry Pi Model 3+ --> | ||
<RuntimeIdentifier>linux-arm64</RuntimeIdentifier> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<SelfContained>false</SelfContained> | ||
<PublishSingleFile>true</PublishSingleFile> | ||
<PublishReadyToRun>true</PublishReadyToRun> | ||
<DebugType>none</DebugType> | ||
<DebugSymbols>false</DebugSymbols> | ||
</PropertyGroup> | ||
</Project> |
20 changes: 20 additions & 0 deletions
20
src/ST.Client.Desktop.Avalonia.App/Properties/PublishProfiles/fd-linux-x64.pubxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
https://go.microsoft.com/fwlink/?LinkID=208121. | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<DefineConstants>FRAMEWORK_DEPENDENT;PUBLISH;LINUX;$(DefineConstants)</DefineConstants> | ||
<Configuration>Release</Configuration> | ||
<Platform>Any CPU</Platform> | ||
<PublishDir>bin\Release\Publish\FrameworkDependent\linux-x64</PublishDir> | ||
<PublishProtocol>FileSystem</PublishProtocol> | ||
<RuntimeIdentifier>linux-x64</RuntimeIdentifier> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<SelfContained>false</SelfContained> | ||
<PublishSingleFile>true</PublishSingleFile> | ||
<PublishReadyToRun>true</PublishReadyToRun> | ||
<DebugType>none</DebugType> | ||
<DebugSymbols>false</DebugSymbols> | ||
</PropertyGroup> | ||
</Project> |
21 changes: 21 additions & 0 deletions
21
src/ST.Client.Desktop.Avalonia.App/Properties/PublishProfiles/fd-osx-arm64.pubxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
https://go.microsoft.com/fwlink/?LinkID=208121. | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!-- Mac for Apple Silicon --> | ||
<PropertyGroup> | ||
<DefineConstants>FRAMEWORK_DEPENDENT;MAC;PUBLISH;$(DefineConstants)</DefineConstants> | ||
<Configuration>Release</Configuration> | ||
<Platform>arm64</Platform> | ||
<PublishDir>bin\Release\Publish\FrameworkDependent\osx-arm64</PublishDir> | ||
<PublishProtocol>FileSystem</PublishProtocol> | ||
<RuntimeIdentifier>osx.11.0-arm64</RuntimeIdentifier> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<SelfContained>false</SelfContained> | ||
<PublishSingleFile>true</PublishSingleFile> | ||
<PublishReadyToRun>true</PublishReadyToRun> | ||
<DebugType>none</DebugType> | ||
<DebugSymbols>false</DebugSymbols> | ||
</PropertyGroup> | ||
</Project> |
20 changes: 20 additions & 0 deletions
20
src/ST.Client.Desktop.Avalonia.App/Properties/PublishProfiles/fd-osx-x64.pubxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
https://go.microsoft.com/fwlink/?LinkID=208121. | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<DefineConstants>FRAMEWORK_DEPENDENT;MAC;PUBLISH;$(DefineConstants)</DefineConstants> | ||
<Configuration>Release</Configuration> | ||
<Platform>Any CPU</Platform> | ||
<PublishDir>bin\Release\Publish\FrameworkDependent\osx-x64</PublishDir> | ||
<PublishProtocol>FileSystem</PublishProtocol> | ||
<RuntimeIdentifier>osx.10.14-x64</RuntimeIdentifier> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<SelfContained>false</SelfContained> | ||
<PublishSingleFile>true</PublishSingleFile> | ||
<PublishReadyToRun>true</PublishReadyToRun> | ||
<DebugType>none</DebugType> | ||
<DebugSymbols>false</DebugSymbols> | ||
</PropertyGroup> | ||
</Project> |
18 changes: 18 additions & 0 deletions
18
src/ST.Client.Desktop.Avalonia.App/Properties/PublishProfiles/fd-win-arm64.pubxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
https://go.microsoft.com/fwlink/?LinkID=208121. | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<DefineConstants>FRAMEWORK_DEPENDENT;PUBLISH;WINDOWS;$(DefineConstants)</DefineConstants> | ||
<Configuration>Release</Configuration> | ||
<Platform>ARM64</Platform> | ||
<PublishDir>bin\Release\Publish\FrameworkDependent\win-arm64</PublishDir> | ||
<PublishProtocol>FileSystem</PublishProtocol> | ||
<RuntimeIdentifier>win10-arm64</RuntimeIdentifier> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<SelfContained>false</SelfContained> | ||
<PublishSingleFile>true</PublishSingleFile> | ||
<PublishReadyToRun>true</PublishReadyToRun> | ||
</PropertyGroup> | ||
</Project> |
25 changes: 25 additions & 0 deletions
25
src/ST.Client.Desktop.Avalonia.App/Properties/PublishProfiles/fd-win-x64.pubxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
https://go.microsoft.com/fwlink/?LinkID=208121. | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<DefineConstants>FRAMEWORK_DEPENDENT;PUBLISH;PUBLISH_WIN7;WINDOWS;$(DefineConstants)</DefineConstants> | ||
<Configuration>Release</Configuration> | ||
<PublishDir>bin\Release\Publish\FrameworkDependent\win-x64</PublishDir> | ||
<PublishProtocol>FileSystem</PublishProtocol> | ||
<RuntimeIdentifier>win7-x64</RuntimeIdentifier> | ||
<Platform>Any CPU</Platform> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<SelfContained>false</SelfContained> | ||
<!-- C:\Program Files\dotnet\sdk\6.0.100\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.RuntimeIdentifierInference.targets --> | ||
<!-- Delete <NETSdkError ... ResourceName="SingleFileWin7Incompatible" ... /> --> | ||
<!-- https://github.com/dotnet/sdk/issues/16499 --> | ||
<!-- https://github.com/dotnet/sdk/pull/19439/files#diff-a34c0c3c174905dc5ce1e883006893f45b46b08fcac6ba51535c464cb952c6a2R162 --> | ||
<!-- https://www.nuget.org/packages/runtime.win7-x64.Microsoft.NETCore.Windows.ApiSets --> | ||
<!--“GenerateBundle”任务意外失败。--> | ||
<!--System.IO.IOException: 文件“bin\Release\Publish\win-x64\Steam++.exe”正由另一进程使用,因此该进程无法访问此文件。--> | ||
<PublishSingleFile>false</PublishSingleFile> | ||
<PublishReadyToRun>true</PublishReadyToRun> | ||
</PropertyGroup> | ||
</Project> |