Skip to content

Commit b84d9be

Browse files
committed
Enable Windows targeting in project files x2
Added <EnableWindowsTargeting>true</EnableWindowsTargeting> to both FASTER - Backup.csproj and FASTERTests.csproj to explicitly enable Windows-specific APIs and features during build and development 🤷
1 parent d45b2c2 commit b84d9be

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

FASTER/FASTER - Backup.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
44
<TargetFramework>net6.0-windows</TargetFramework>
5+
<EnableWindowsTargeting>true</EnableWindowsTargeting>
56
<PublishSingleFile Condition="'$(Configuration)' == 'Release'">true</PublishSingleFile>
67
<PublishReadyToRun>true</PublishReadyToRun>
78
<RuntimeIdentifier>win-x64</RuntimeIdentifier>

FASTERTests/FASTERTests.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFramework>net8.0-windows</TargetFramework>
4+
<EnableWindowsTargeting>true</EnableWindowsTargeting>
45
<IsPackable>false</IsPackable>
56
</PropertyGroup>
67
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

0 commit comments

Comments
 (0)