Skip to content

Commit eddc538

Browse files
committed
Update NTAssassin and upgrade .sln file to VS 2022
1 parent 255cffd commit eddc538

60 files changed

Lines changed: 406 additions & 265 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Source/AlleyWind.sln

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
2-
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.30523.141
5-
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AlleyWind", "AlleyWind\AlleyWind.vcxproj", "{975A445D-9333-401B-868E-6283C7B464D0}"
7-
EndProject
8-
Global
9-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10-
Debug|x64 = Debug|x64
11-
Debug|x86 = Debug|x86
12-
Release|x64 = Release|x64
13-
Release|x86 = Release|x86
14-
EndGlobalSection
15-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16-
{975A445D-9333-401B-868E-6283C7B464D0}.Debug|x64.ActiveCfg = Debug|x64
17-
{975A445D-9333-401B-868E-6283C7B464D0}.Debug|x64.Build.0 = Debug|x64
18-
{975A445D-9333-401B-868E-6283C7B464D0}.Debug|x86.ActiveCfg = Debug|Win32
19-
{975A445D-9333-401B-868E-6283C7B464D0}.Debug|x86.Build.0 = Debug|Win32
20-
{975A445D-9333-401B-868E-6283C7B464D0}.Release|x64.ActiveCfg = Release|x64
21-
{975A445D-9333-401B-868E-6283C7B464D0}.Release|x64.Build.0 = Release|x64
22-
{975A445D-9333-401B-868E-6283C7B464D0}.Release|x86.ActiveCfg = Release|Win32
23-
{975A445D-9333-401B-868E-6283C7B464D0}.Release|x86.Build.0 = Release|Win32
24-
EndGlobalSection
25-
GlobalSection(SolutionProperties) = preSolution
26-
HideSolutionNode = FALSE
27-
EndGlobalSection
28-
GlobalSection(ExtensibilityGlobals) = postSolution
29-
SolutionGuid = {A99F203C-9E1A-48B1-8E41-1A7CD706B424}
30-
EndGlobalSection
31-
EndGlobal
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.1.32210.238
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AlleyWind", "AlleyWind\AlleyWind.vcxproj", "{975A445D-9333-401B-868E-6283C7B464D0}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|x64 = Debug|x64
11+
Debug|x86 = Debug|x86
12+
Release|x64 = Release|x64
13+
Release|x86 = Release|x86
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{975A445D-9333-401B-868E-6283C7B464D0}.Debug|x64.ActiveCfg = Debug|x64
17+
{975A445D-9333-401B-868E-6283C7B464D0}.Debug|x64.Build.0 = Debug|x64
18+
{975A445D-9333-401B-868E-6283C7B464D0}.Debug|x86.ActiveCfg = Debug|Win32
19+
{975A445D-9333-401B-868E-6283C7B464D0}.Debug|x86.Build.0 = Debug|Win32
20+
{975A445D-9333-401B-868E-6283C7B464D0}.Release|x64.ActiveCfg = Release|x64
21+
{975A445D-9333-401B-868E-6283C7B464D0}.Release|x64.Build.0 = Release|x64
22+
{975A445D-9333-401B-868E-6283C7B464D0}.Release|x86.ActiveCfg = Release|Win32
23+
{975A445D-9333-401B-868E-6283C7B464D0}.Release|x86.Build.0 = Release|Win32
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {ED37D4BE-8792-4E53-AF03-D44F610E98E7}
30+
EndGlobalSection
31+
EndGlobal

Source/AlleyWind/3rdParty/bin/NTAssassin/NAC/NAC.deps.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"runtimeTarget": {
3-
"name": ".NETCoreApp,Version=v5.0",
3+
"name": ".NETCoreApp,Version=v6.0",
44
"signature": ""
55
},
66
"compilationOptions": {},
77
"targets": {
8-
".NETCoreApp,Version=v5.0": {
8+
".NETCoreApp,Version=v6.0": {
99
"NAC/1.0.0": {
1010
"runtime": {
1111
"NAC.dll": {}
0 Bytes
Binary file not shown.
21.5 KB
Binary file not shown.
580 Bytes
Binary file not shown.
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
{
22
"runtimeOptions": {
3-
"tfm": "net5.0",
3+
"tfm": "net6.0",
44
"framework": {
55
"name": "Microsoft.NETCore.App",
6-
"version": "5.0.0"
6+
"version": "6.0.0"
7+
},
8+
"configProperties": {
9+
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
710
}
811
}
912
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#pragma once
1+
#pragma once
22

33
#include "NTAssassin.h"

Source/AlleyWind/3rdParty/include/NTAssassin/NTACtl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#pragma once
1+
#pragma once
22

33
#include "NTAssassin.h"
44
#include "NTACtl_ColorPicker.h"

Source/AlleyWind/3rdParty/include/NTAssassin/NTACtl_ColorPicker.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#pragma once
1+
#pragma once
22

33
#include "NTAssassin.h"
44

Source/AlleyWind/3rdParty/include/NTAssassin/NTADPI.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// High-DPI support
1+
// High-DPI support
22

33
#pragma once
44

0 commit comments

Comments
 (0)