Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/famicom-dumper-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2023-01-15 19:27:24 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2023-01-15 19:27:24 +0300
commitba5fcf3a0b86c3e3d5dd9c23567e14101d331008 (patch)
treee40a019db82027bbe0f82b7b458c1d4adcf0281e
parentf0eabaf6bf4f7da30d1a6e59581976df8fc550f4 (diff)
Disabled trimming
-rw-r--r--.github/workflows/build-test.yml2
-rw-r--r--.github/workflows/release.yml2
-rw-r--r--FamicomDumper/FamicomDumper.csproj1
3 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index d1be9ed..0b8eaa2 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -47,7 +47,7 @@ jobs:
dotnet-version: 6.0.x
- name: Build
env:
- SC_OPS: ${{ matrix.sc == 'self-contained' && '--self-contained true -p:PublishTrimmed=True' || '--no-self-contained' }}
+ SC_OPS: ${{ matrix.sc == 'self-contained' && '--self-contained true' || '--no-self-contained' }}
run: dotnet publish ${{ env.PROJECT_PATH }} -c ${{ env.CONFIGURATION }} -r ${{ matrix.os }}-${{ matrix.arch }} ${{ env.SC_OPS }} -o ${{ env.OUTPUT_DIR }}/${{ env.OUTPUT_SUBDIR }}/${{ env.APP_NAME }}
- name: Simple test
if: |
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 938bd63..c91a817 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -57,7 +57,7 @@ jobs:
dotnet-version: 6.0.x
- name: Build
env:
- SC_OPS: ${{ matrix.sc == 'self-contained' && '--self-contained true -p:PublishTrimmed=True' || '--no-self-contained' }}
+ SC_OPS: ${{ matrix.sc == 'self-contained' && '--self-contained true' || '--no-self-contained' }}
run: dotnet publish ${{ env.PROJECT_PATH }} -c ${{ env.CONFIGURATION }} -r ${{ matrix.os }}-${{ matrix.arch }} $SC_OPS -o ${{ env.OUTPUT_DIR }}/${{ env.OUTPUT_SUBDIR }}/${{ env.APP_NAME }}
- name: Simple test
if: |
diff --git a/FamicomDumper/FamicomDumper.csproj b/FamicomDumper/FamicomDumper.csproj
index 0d3fd67..096d2a3 100644
--- a/FamicomDumper/FamicomDumper.csproj
+++ b/FamicomDumper/FamicomDumper.csproj
@@ -13,7 +13,6 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishSingleFile>true</PublishSingleFile>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
- <SuppressTrimAnalysisWarnings>true</SuppressTrimAnalysisWarnings>
<Configurations>Debug;Release;Interim</Configurations>
</PropertyGroup>