Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dissectum committed Sep 14, 2023
1 parent 6462a54 commit c209b25
Show file tree
Hide file tree
Showing 7 changed files with 97 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ publish/
*.azurePubxml
# Note: Comment the next line if you want to checkin your web deploy settings,
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
# *.pubxml
*.publishproj

# Microsoft Azure Web App publish settings. Comment the next line if you want to
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<Platform>ARM64</Platform>
<RuntimeIdentifier>linux-arm64</RuntimeIdentifier>
<PublishDir>..\..\Publish\MBA.Cli-linux-arm64-single-cut\</PublishDir>

<Configuration>Release</Configuration>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
</Project>
16 changes: 16 additions & 0 deletions src/MBA.Cli/Properties/PublishProfiles/linux-x64-single-cut.pubxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<Platform>x64</Platform>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<PublishDir>..\..\Publish\MBA.Cli-linux-x64-single-cut\</PublishDir>

<Configuration>Release</Configuration>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
</Project>
16 changes: 16 additions & 0 deletions src/MBA.Cli/Properties/PublishProfiles/osx-arm64-single-cut.pubxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<Platform>ARM64</Platform>
<RuntimeIdentifier>osx-arm64</RuntimeIdentifier>
<PublishDir>..\..\Publish\MBA.Cli-osx-arm64-single-cut\</PublishDir>

<Configuration>Release</Configuration>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
</Project>
16 changes: 16 additions & 0 deletions src/MBA.Cli/Properties/PublishProfiles/osx-x64-single-cut.pubxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<Platform>x64</Platform>
<RuntimeIdentifier>osx-x64</RuntimeIdentifier>
<PublishDir>..\..\Publish\MBA.Cli-osx-x64-single-cut\</PublishDir>

<Configuration>Release</Configuration>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
</Project>
16 changes: 16 additions & 0 deletions src/MBA.Cli/Properties/PublishProfiles/win-arm64-single-cut.pubxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<Platform>ARM64</Platform>
<RuntimeIdentifier>win-arm64</RuntimeIdentifier>
<PublishDir>..\..\Publish\MBA.Cli-win-arm64-single-cut\</PublishDir>

<Configuration>Release</Configuration>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
</Project>
16 changes: 16 additions & 0 deletions src/MBA.Cli/Properties/PublishProfiles/win-x64-single-cut.pubxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<Platform>x64</Platform>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishDir>..\..\Publish\MBA.Cli-win-x64-single-cut\</PublishDir>

<Configuration>Release</Configuration>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
</Project>

0 comments on commit c209b25

Please sign in to comment.