Skip to content

Commit

Permalink
Merge pull request #7 from jeppevinkel/master
Browse files Browse the repository at this point in the history
Update csproject for single file builds
  • Loading branch information
BOLL7708 authored Jun 10, 2024
2 parents dd288cb + c62ee60 commit 3f3fa6d
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions OpenVRStartup/OpenVRStartup.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
<PlatformTarget>x64</PlatformTarget>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
Expand All @@ -13,6 +15,13 @@
<OutputPath>bin\x64\Release\</OutputPath>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<PublishSingleFile>true</PublishSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<DebugType>embedded</DebugType>
<DebugSymbols>false</DebugSymbols>
<SelfContained>false</SelfContained>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
Expand Down Expand Up @@ -57,4 +66,4 @@
<ItemGroup>
<PackageReference Include="System.Resources.Extensions" Version="8.0.0" />
</ItemGroup>
</Project>
</Project>

0 comments on commit 3f3fa6d

Please sign in to comment.