Skip to content

Commit

Permalink
[server] fix rider debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
yellowsink committed Nov 1, 2023
1 parent 2e9f37f commit 099ae9e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Publish
run: |
cd UwuRadio.Server
dotnet publish -r linux-x64 --self-contained -c Release
dotnet publish -r linux-x64 --self-contained -c Release -p:PublishSingleFile=true
mkdir ../dist
cp bin/Release/net*/*/publish/UwuRadio.Server ../dist
Expand Down
5 changes: 3 additions & 2 deletions UwuRadio.Server/UwuRadio.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PublishSingleFile>true</PublishSingleFile>
<!--this causes issues with Rider, moved to CI-->
<!--<PublishSingleFile>true</PublishSingleFile>-->
<!-- this causes issues with aspnet etc -->
<!--<PublishTrimmed>true</PublishTrimmed>-->
</PropertyGroup>
Expand All @@ -14,4 +15,4 @@
<PackageReference Include="NodaTime" Version="3.1.5" />
</ItemGroup>

</Project>
</Project>

0 comments on commit 099ae9e

Please sign in to comment.