Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

Commit

Permalink
Fixed Publish Settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
patmagauran committed Dec 28, 2021
1 parent 3658716 commit 405bf4f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
"type": "process",
"args": [
"publish",
"--configuration",
"release",
"${workspaceFolder}/ForzaDualSense/ForzaDualSense.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
Expand Down
4 changes: 2 additions & 2 deletions ForzaDualSense/ForzaDualSense.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<TargetFramework>net6.0</TargetFramework>
<PublishSingleFile Condition="'$(Configuration)' == 'Release'">true</PublishSingleFile>

<SelfContained>true</SelfContained>
<SelfContained Condition="'$(Configuration)' == 'Release'">true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishReadyToRun Condition="'$(Configuration)' == 'Release'">true</PublishReadyToRun>
</PropertyGroup>
<ItemGroup>
<Content Include="appsettings.ini">
Expand Down

0 comments on commit 405bf4f

Please sign in to comment.