Skip to content

Commit e288ced

Browse files
Merge pull request #99 from nullinside-development-group/feat/exe
feat: decreasing files in output
2 parents 03edbfa + ede47dc commit e288ced

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ ARG DESCRIPTION
2020
RUN apt-get update && apt-get dist-upgrade -y && apt-get install zip jq -y
2121

2222
# Generate the executables
23-
RUN dotnet publish "TwitchStreamingTools.csproj" -p:Version="$TAG_VERSION" -c $BUILD_CONFIGURATION -o /app/publish/win-x64 -r win-x64
24-
RUN dotnet publish "TwitchStreamingTools.csproj" -p:Version="$TAG_VERSION" -c $BUILD_CONFIGURATION -o /app/publish/win-x86 -r win-x86
23+
RUN dotnet publish "TwitchStreamingTools.csproj" -p:Version="$TAG_VERSION" -c $BUILD_CONFIGURATION -o /app/publish/win-x64 -r win-x64 -p:PublishSingleFile=True -p:PublishTrimmed=True -p:TrimMode=CopyUsed -p:PublishReadyToRun=True --self-contained
24+
RUN dotnet publish "TwitchStreamingTools.csproj" -p:Version="$TAG_VERSION" -c $BUILD_CONFIGURATION -o /app/publish/win-x86 -r win-x86 -p:PublishSingleFile=True -p:PublishTrimmed=True -p:TrimMode=CopyUsed -p:PublishReadyToRun=True --self-contained
2525
RUN cd /app/publish/win-x64 && zip -r ../windows-x64.zip *
2626
RUN cd /app/publish/win-x86 && zip -r ../windows-x86.zip *
2727

src/TwitchStreamingTools/TwitchStreamingTools.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Version>1.0.0</Version>
1010
<PackageProjectUrl>https://nullinside.com</PackageProjectUrl>
1111
<PackageIcon>Assets\icon.png</PackageIcon>
12-
<RepositoryUrl>https://github.com/nullinside-development-group/nullinside-site-monitor</RepositoryUrl>
12+
<RepositoryUrl>https://github.com/nullinside-development-group/twitch-streaming-tools</RepositoryUrl>
1313
<ApplicationIcon>Assets\logo.ico</ApplicationIcon>
1414
<LangVersion>default</LangVersion>
1515
</PropertyGroup>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2+
<s:String x:Key="/Default/CodeInspection/Daemon/ConfigureAwaitAnalysisMode/@EntryValue">Library</s:String></wpf:ResourceDictionary>

0 commit comments

Comments
 (0)