Skip to content

Commit 2035f7e

Browse files
Merge pull request #125 from C7-Game/VisualStudioDebugging
Visual Studio 2019 Debugging Support
2 parents e1f39e1 + f4c2c8b commit 2035f7e

File tree

2 files changed

+45
-2
lines changed

2 files changed

+45
-2
lines changed

C7/C7.sln

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QueryCiv3", "..\QueryCiv3\Q
1515
EndProject
1616
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blast", "..\Blast\Blast.csproj", "{C758B0EB-9F8F-45CF-9ACB-B04705CD7FEC}"
1717
EndProject
18-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EngineTests", "..\EngineTests\EngineTests.csproj", "{270876A6-0DC8-4150-B374-0BC9E4CC2113}"
18+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EngineTests", "..\EngineTests\EngineTests.csproj", "{270876A6-0DC8-4150-B374-0BC9E4CC2113}"
1919
EndProject
20-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BuildDevSave", "..\_Console\BuildDevSave\BuildDevSave.csproj", "{E66928C1-157B-42D3-AEC5-88F41C7A7846}"
20+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BuildDevSave", "..\_Console\BuildDevSave\BuildDevSave.csproj", "{E66928C1-157B-42D3-AEC5-88F41C7A7846}"
21+
EndProject
22+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VSStub", "VSStub\VSStub.csproj", "{D420363F-5260-42D6-883A-BC1D970B39D9}"
2123
EndProject
2224
Global
2325
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -91,6 +93,14 @@ Global
9193
{E66928C1-157B-42D3-AEC5-88F41C7A7846}.ExportRelease|Any CPU.Build.0 = Debug|Any CPU
9294
{E66928C1-157B-42D3-AEC5-88F41C7A7846}.Release|Any CPU.ActiveCfg = Release|Any CPU
9395
{E66928C1-157B-42D3-AEC5-88F41C7A7846}.Release|Any CPU.Build.0 = Release|Any CPU
96+
{D420363F-5260-42D6-883A-BC1D970B39D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
97+
{D420363F-5260-42D6-883A-BC1D970B39D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
98+
{D420363F-5260-42D6-883A-BC1D970B39D9}.ExportDebug|Any CPU.ActiveCfg = Debug|Any CPU
99+
{D420363F-5260-42D6-883A-BC1D970B39D9}.ExportDebug|Any CPU.Build.0 = Debug|Any CPU
100+
{D420363F-5260-42D6-883A-BC1D970B39D9}.ExportRelease|Any CPU.ActiveCfg = Release|Any CPU
101+
{D420363F-5260-42D6-883A-BC1D970B39D9}.ExportRelease|Any CPU.Build.0 = Release|Any CPU
102+
{D420363F-5260-42D6-883A-BC1D970B39D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
103+
{D420363F-5260-42D6-883A-BC1D970B39D9}.Release|Any CPU.Build.0 = Release|Any CPU
94104
EndGlobalSection
95105
GlobalSection(SolutionProperties) = preSolution
96106
HideSolutionNode = FALSE

C7/VSStub/VSStub.csproj

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{D420363F-5260-42D6-883A-BC1D970B39D9}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<RootNamespace>StubProj</RootNamespace>
10+
<AssemblyName>StubProj</AssemblyName>
11+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
15+
<ProjectTypeGuids>{8F3E2DF0-C35C-4265-82FC-BEA011F4A7ED};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
16+
</PropertyGroup>
17+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18+
<PlatformTarget>AnyCPU</PlatformTarget>
19+
<DebugSymbols>true</DebugSymbols>
20+
<DebugType>full</DebugType>
21+
<Optimize>false</Optimize>
22+
<OutputPath>bin\Debug\</OutputPath>
23+
<DefineConstants>DEBUG;TRACE</DefineConstants>
24+
<ErrorReport>prompt</ErrorReport>
25+
<WarningLevel>4</WarningLevel>
26+
</PropertyGroup>
27+
<ItemGroup>
28+
<ProjectReference Include="..\*.csproj">
29+
<Private>False</Private>
30+
</ProjectReference>
31+
</ItemGroup>
32+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
33+
</Project>

0 commit comments

Comments
 (0)