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

NesTiler.git/NesTiler.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-12-14 12:31:26 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-12-14 12:31:26 +0300
commitce39aadd3c50f1460c1e22efbbe7b17f32e9a9ba (patch)
tree897fe3ac6a6760fb049b127c236beec48ce44a11
parentfdc554bd182485b786f3b74a2faa2208a29e880b (diff)
Minor fixes, debug version for nighly builds.
-rw-r--r--.github/workflows/build-test.yml4
-rw-r--r--NesTiler/Config.cs4
-rw-r--r--NesTiler/Program.cs2
3 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 4da33f6..e13b26a 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -33,7 +33,7 @@ jobs:
APP_NAME: nestiler
PROJECT_PATH: ./NesTiler
OUTPUT_DIR: output
- CONFIGURATION: Release
+ CONFIGURATION: Debug
OUTPUT_SUBDIR: ${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.sc }}
OUTPUT_FILE: nestiler-${{ matrix.os }}-${{ matrix.arch }}${{ matrix.sc == 'self-contained' && '-self-contained' || '' }}.${{ matrix.os == 'win' && 'zip' || 'tar.gz' }}
steps:
@@ -48,7 +48,7 @@ jobs:
- name: Build
env:
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 }} -p:PublishSingleFile=true ${{ env.SC_OPS }} -o ${{ env.OUTPUT_DIR }}/${{ env.OUTPUT_SUBDIR }}/${{ env.APP_NAME }} -p:IncludeAllContentForSelfExtract=true
+ run: dotnet publish ${{ env.PROJECT_PATH }} -c ${{ env.CONFIGURATION }} -r ${{ matrix.os }}-${{ matrix.arch }} -p:PublishSingleFile=true ${{ env.SC_OPS }} -o ${{ env.OUTPUT_DIR }}/${{ env.OUTPUT_SUBDIR }}/${{ env.APP_NAME }}
- name: Archive
working-directory: ${{ env.OUTPUT_DIR }}/${{ env.OUTPUT_SUBDIR }}
env:
diff --git a/NesTiler/Config.cs b/NesTiler/Config.cs
index c4c8225..af7f9bd 100644
--- a/NesTiler/Config.cs
+++ b/NesTiler/Config.cs
@@ -50,9 +50,9 @@ namespace com.clusterrr.Famicom.NesTiler
private Config()
{
- ColorsFile = Path.Combine(Path.GetDirectoryName(Process.GetCurrentProcess().MainModule!.FileName)!, DEFAULT_COLORS_FILE);
+ ColorsFile = Path.Combine(AppContext.BaseDirectory, DEFAULT_COLORS_FILE);
if (!File.Exists(ColorsFile))
- ColorsFile = Path.Combine(AppContext.BaseDirectory, DEFAULT_COLORS_FILE);
+ ColorsFile = Path.Combine(Path.GetDirectoryName(Process.GetCurrentProcess().MainModule!.FileName)!, DEFAULT_COLORS_FILE);
if (!File.Exists(ColorsFile) && !OperatingSystem.IsWindows())
ColorsFile = Path.Combine("/etc", DEFAULT_COLORS_FILE);
}
diff --git a/NesTiler/Program.cs b/NesTiler/Program.cs
index 1ec2578..5b862e4 100644
--- a/NesTiler/Program.cs
+++ b/NesTiler/Program.cs
@@ -21,8 +21,8 @@ namespace com.clusterrr.Famicom.NesTiler
static void PrintAppInfo()
{
Console.WriteLine($"NesTiler v{Assembly.GetExecutingAssembly()?.GetName()?.Version?.Major}.{Assembly.GetExecutingAssembly()?.GetName()?.Version?.Minor}");
- Console.WriteLine($" Commit {Properties.Resources.gitCommit} @ {REPO_PATH}");
#if DEBUG
+ Console.WriteLine($" Commit {Properties.Resources.gitCommit} @ {REPO_PATH}");
Console.WriteLine($" Debug version, build time: {BUILD_TIME.ToLocalTime()}");
#endif
Console.WriteLine(" (c) Alexey 'Cluster' Avdyukhin / https://clusterrr.com / clusterrr@clusterrr.com");