Skip to content

Commit fb2d7e3

Browse files
cool
1 parent 6285611 commit fb2d7e3

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

Plastic.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>
8+
9+
<PropertyGroup>
10+
<DisableStackProtection>true</DisableStackProtection>
11+
</PropertyGroup>
12+
813

914
</Project>

app.manifest

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
3+
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
4+
<security>
5+
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
6+
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
7+
</requestedPrivileges>
8+
</security>
9+
</trustInfo>
10+
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
11+
<application>
12+
<!-- Windows compatibility entries -->
13+
</application>
14+
</compatibility>
15+
<application xmlns="urn:schemas-microsoft-com:asm.v3">
16+
<windowsSettings>
17+
<heapType xmlns="http://schemas.microsoft.com/SMI/2020/WindowsSettings">SegmentHeap</heapType>
18+
<!-- Disable CET Shadow Stacks -->
19+
<cetCompat xmlns="http://schemas.microsoft.com/SMI/2020/WindowsSettings">false</cetCompat>
20+
</windowsSettings>
21+
</application>
22+
</assembly>

0 commit comments

Comments
 (0)