summaryrefslogtreecommitdiff
path: root/builds/msvc/properties
diff options
context:
space:
mode:
Diffstat (limited to 'builds/msvc/properties')
-rw-r--r--builds/msvc/properties/Common.props21
-rw-r--r--builds/msvc/properties/DLL.props16
-rw-r--r--builds/msvc/properties/Debug.props29
-rw-r--r--builds/msvc/properties/DebugDEXE.props21
-rw-r--r--builds/msvc/properties/DebugDLL.props20
-rw-r--r--builds/msvc/properties/DebugLEXE.props20
-rw-r--r--builds/msvc/properties/DebugLIB.props21
-rw-r--r--builds/msvc/properties/DebugLTCG.props20
-rw-r--r--builds/msvc/properties/DebugSEXE.props21
-rw-r--r--builds/msvc/properties/EXE.props17
-rw-r--r--builds/msvc/properties/LIB.props16
-rw-r--r--builds/msvc/properties/LTCG.props13
-rw-r--r--builds/msvc/properties/Link.props21
-rw-r--r--builds/msvc/properties/Messages.props15
-rw-r--r--builds/msvc/properties/Output.props30
-rw-r--r--builds/msvc/properties/Release.props41
-rw-r--r--builds/msvc/properties/ReleaseDEXE.props20
-rw-r--r--builds/msvc/properties/ReleaseDLL.props19
-rw-r--r--builds/msvc/properties/ReleaseLEXE.props20
-rw-r--r--builds/msvc/properties/ReleaseLIB.props19
-rw-r--r--builds/msvc/properties/ReleaseLTCG.props19
-rw-r--r--builds/msvc/properties/ReleaseSEXE.props20
-rw-r--r--builds/msvc/properties/Win32.props20
-rw-r--r--builds/msvc/properties/x64.props23
24 files changed, 0 insertions, 502 deletions
diff --git a/builds/msvc/properties/Common.props b/builds/msvc/properties/Common.props
deleted file mode 100644
index 72588d6..0000000
--- a/builds/msvc/properties/Common.props
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Common Settings</_PropertySheetDisplayName>
- <CharacterSet>Unicode</CharacterSet>
- </PropertyGroup>
-
- <ImportGroup Label="PropertySheets">
- <Import Project="$(Platform).props" />
- </ImportGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <MultiProcessorCompilation>true</MultiProcessorCompilation>
- <PreprocessorDefinitions>UNICODE;_UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <WarningLevel>Level3</WarningLevel>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/DLL.props b/builds/msvc/properties/DLL.props
deleted file mode 100644
index b5aa1f0..0000000
--- a/builds/msvc/properties/DLL.props
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Dynamic Library</_PropertySheetDisplayName>
- <DefaultLinkage>dynamic</DefaultLinkage>
- <TargetExt>.dll</TargetExt>
- </PropertyGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <PreprocessorDefinitions>_DLL;_WINDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/Debug.props b/builds/msvc/properties/Debug.props
deleted file mode 100644
index 6fa7419..0000000
--- a/builds/msvc/properties/Debug.props
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <ImportGroup Label="PropertySheets">
- <Import Project="Common.props" />
- </ImportGroup>
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Debug Settings</_PropertySheetDisplayName>
- <DebugOrRelease>Debug</DebugOrRelease>
- </PropertyGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
- <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
- <FunctionLevelLinking>true</FunctionLevelLinking>
- <Optimization>Disabled</Optimization>
- <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- <ResourceCompile>
- <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ResourceCompile>
- <Link>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- </Link>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/DebugDEXE.props b/builds/msvc/properties/DebugDEXE.props
deleted file mode 100644
index fe8b577..0000000
--- a/builds/msvc/properties/DebugDEXE.props
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Console Debug Dynamic</_PropertySheetDisplayName>
- <DefaultLinkage>dynamic</DefaultLinkage>
- </PropertyGroup>
-
- <ImportGroup Label="PropertySheets">
- <Import Project="Debug.props" />
- <Import Project="EXE.props" />
- </ImportGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
- <LinkIncremental>true</LinkIncremental>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/DebugDLL.props b/builds/msvc/properties/DebugDLL.props
deleted file mode 100644
index a451d0b..0000000
--- a/builds/msvc/properties/DebugDLL.props
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Dynamic Debug Library</_PropertySheetDisplayName>
- </PropertyGroup>
-
- <ImportGroup Label="PropertySheets">
- <Import Project="Debug.props" />
- <Import Project="DLL.props" />
- </ImportGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
- <LinkIncremental>true</LinkIncremental>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/DebugLEXE.props b/builds/msvc/properties/DebugLEXE.props
deleted file mode 100644
index 7fa92c0..0000000
--- a/builds/msvc/properties/DebugLEXE.props
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Console Debug Link Time Code Generation</_PropertySheetDisplayName>
- </PropertyGroup>
-
- <ImportGroup Label="PropertySheets">
- <Import Project="Debug.props" />
- <Import Project="Link.props" />
- <Import Project="EXE.props" />
- </ImportGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/DebugLIB.props b/builds/msvc/properties/DebugLIB.props
deleted file mode 100644
index c5f1012..0000000
--- a/builds/msvc/properties/DebugLIB.props
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Static Debug Library</_PropertySheetDisplayName>
- </PropertyGroup>
-
- <ImportGroup Label="PropertySheets">
- <Import Project="Debug.props" />
- <Import Project="LIB.props" />
- </ImportGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <DebugInformationFormat>OldStyle</DebugInformationFormat>
- <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
- <LinkIncremental>true</LinkIncremental>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/DebugLTCG.props b/builds/msvc/properties/DebugLTCG.props
deleted file mode 100644
index 42b22ff..0000000
--- a/builds/msvc/properties/DebugLTCG.props
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Static Debug Link Time Code Generation Library</_PropertySheetDisplayName>
- </PropertyGroup>
-
- <ImportGroup Label="PropertySheets">
- <Import Project="Debug.props" />
- <Import Project="LTCG.props" />
- </ImportGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <DebugInformationFormat>OldStyle</DebugInformationFormat>
- <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/DebugSEXE.props b/builds/msvc/properties/DebugSEXE.props
deleted file mode 100644
index 2615ffc..0000000
--- a/builds/msvc/properties/DebugSEXE.props
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Console Debug Static</_PropertySheetDisplayName>
- <DefaultLinkage>static</DefaultLinkage>
- </PropertyGroup>
-
- <ImportGroup Label="PropertySheets">
- <Import Project="Debug.props" />
- <Import Project="EXE.props" />
- </ImportGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
- <LinkIncremental>true</LinkIncremental>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/EXE.props b/builds/msvc/properties/EXE.props
deleted file mode 100644
index 3549064..0000000
--- a/builds/msvc/properties/EXE.props
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Console Application</_PropertySheetDisplayName>
- <IsExe>true</IsExe>
- </PropertyGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- <Link>
- <SubSystem>Console</SubSystem>
- </Link>
- </ItemDefinitionGroup>
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/LIB.props b/builds/msvc/properties/LIB.props
deleted file mode 100644
index 3835777..0000000
--- a/builds/msvc/properties/LIB.props
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Static Library</_PropertySheetDisplayName>
- <DefaultLinkage>static</DefaultLinkage>
- <TargetExt>.lib</TargetExt>
- </PropertyGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <PreprocessorDefinitions>_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/LTCG.props b/builds/msvc/properties/LTCG.props
deleted file mode 100644
index 0229293..0000000
--- a/builds/msvc/properties/LTCG.props
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Link Time Code Generation Library</_PropertySheetDisplayName>
- </PropertyGroup>
-
- <ImportGroup Label="PropertySheets">
- <Import Project="LIB.props" />
- <Import Project="Link.props" />
- </ImportGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/Link.props b/builds/msvc/properties/Link.props
deleted file mode 100644
index db15fbb..0000000
--- a/builds/msvc/properties/Link.props
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Link Time Code Generation Settings</_PropertySheetDisplayName>
- <DefaultLinkage>ltcg</DefaultLinkage>
- </PropertyGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <WholeProgramOptimization>true</WholeProgramOptimization>
- </ClCompile>
- <Link>
- <LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
- </Link>
- <Lib>
- <LinkTimeCodeGeneration>true</LinkTimeCodeGeneration>
- </Lib>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/Messages.props b/builds/msvc/properties/Messages.props
deleted file mode 100644
index 06a1ab0..0000000
--- a/builds/msvc/properties/Messages.props
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Build Messages</_PropertySheetDisplayName>
- </PropertyGroup>
-
- <Target Name="ConfigInfo" BeforeTargets="PrepareForBuild">
- <Message Text="ConfigurationType : $(ConfigurationType)" Importance="high"/>
- <Message Text="Configuration : $(Configuration)" Importance="high"/>
- <Message Text="PlatformToolset : $(PlatformToolset)" Importance="high"/>
- <Message Text="TargetPath : $(TargetPath)" Importance="high"/>
- </Target>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/Output.props b/builds/msvc/properties/Output.props
deleted file mode 100644
index 492876c..0000000
--- a/builds/msvc/properties/Output.props
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Output Settings</_PropertySheetDisplayName>
- <!-- BuildRoot, RepoRoot, SourceRoot, DebugOrRelease and DefaultLinkage are custom props and should therefore not be referenced from *.import.props or nuget target files. -->
- <BuildRoot>$(ProjectDir)..\..\</BuildRoot>
- <RepoRoot>$(ProjectDir)..\..\..\..\</RepoRoot>
- <SourceRoot>$(ProjectDir)..\..\..\..\..\</SourceRoot>
- <OutDir>$(ProjectDir)..\..\..\..\bin\$(PlatformName)\$(DebugOrRelease)\$(PlatformToolset)\$(DefaultLinkage)\</OutDir>
- <IntDir>$(ProjectDir)..\..\..\..\obj\$(TargetName)\$(PlatformName)\$(DebugOrRelease)\$(PlatformToolset)\$(DefaultLinkage)\</IntDir>
- <TargetDir>$(OutDir)</TargetDir>
- <TargetName>$(TargetName)</TargetName>
- <TargetPath>$(TargetDir)$(TargetName)$(TargetExt)</TargetPath>
- </PropertyGroup>
-
- <ItemDefinitionGroup>
- <Link>
- <ImportLibrary>$(OutDir)$(TargetName).lib</ImportLibrary>
- </Link>
- <BuildLog>
- <Path>$(OutDir)$(TargetName).log</Path>
- </BuildLog>
- </ItemDefinitionGroup>
-
- <ImportGroup Label="PropertySheets">
- <Import Project="Messages.props" />
- </ImportGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/Release.props b/builds/msvc/properties/Release.props
deleted file mode 100644
index 1c5415b..0000000
--- a/builds/msvc/properties/Release.props
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <ImportGroup Label="PropertySheets">
- <Import Project="Common.props" />
- </ImportGroup>
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Release Settings</_PropertySheetDisplayName>
- <DebugOrRelease>Release</DebugOrRelease>
- <LinkIncremental>false</LinkIncremental>
- </PropertyGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <AdditionalOptions>/Oy- %(AdditionalOptions)</AdditionalOptions>
- <!--<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>-->
- <FunctionLevelLinking>true</FunctionLevelLinking>
- <IntrinsicFunctions>true</IntrinsicFunctions>
- <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
- <MinimalRebuild>false</MinimalRebuild>
- <Optimization>MaxSpeed</Optimization>
- <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- <ResourceCompile>
- <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ResourceCompile>
- <Link>
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
- <!--<GenerateDebugInformation>true</GenerateDebugInformation>-->
- <OptimizeReferences>true</OptimizeReferences>
- </Link>
- </ItemDefinitionGroup>
-
- <ItemDefinitionGroup Condition="'$(Processor)' == 'x86'">
- <ClCompile>
- <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/ReleaseDEXE.props b/builds/msvc/properties/ReleaseDEXE.props
deleted file mode 100644
index b89b373..0000000
--- a/builds/msvc/properties/ReleaseDEXE.props
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Console Release Dynamic</_PropertySheetDisplayName>
- <DefaultLinkage>dynamic</DefaultLinkage>
- </PropertyGroup>
-
- <ImportGroup Label="PropertySheets">
- <Import Project="Release.props" />
- <Import Project="EXE.props" />
- </ImportGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/ReleaseDLL.props b/builds/msvc/properties/ReleaseDLL.props
deleted file mode 100644
index 2071b33..0000000
--- a/builds/msvc/properties/ReleaseDLL.props
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Dynamic Release Library</_PropertySheetDisplayName>
- </PropertyGroup>
-
- <ImportGroup Label="PropertySheets">
- <Import Project="Release.props" />
- <Import Project="DLL.props" />
- </ImportGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/ReleaseLEXE.props b/builds/msvc/properties/ReleaseLEXE.props
deleted file mode 100644
index beb73ef..0000000
--- a/builds/msvc/properties/ReleaseLEXE.props
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Console Release Link Time Code Generation</_PropertySheetDisplayName>
- </PropertyGroup>
-
- <ImportGroup Label="PropertySheets">
- <Import Project="Release.props" />
- <Import Project="Link.props" />
- <Import Project="EXE.props" />
- </ImportGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/ReleaseLIB.props b/builds/msvc/properties/ReleaseLIB.props
deleted file mode 100644
index 2b250d5..0000000
--- a/builds/msvc/properties/ReleaseLIB.props
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Static Release Library</_PropertySheetDisplayName>
- </PropertyGroup>
-
- <ImportGroup Label="PropertySheets">
- <Import Project="Release.props" />
- <Import Project="LIB.props" />
- </ImportGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/ReleaseLTCG.props b/builds/msvc/properties/ReleaseLTCG.props
deleted file mode 100644
index 1814c6f..0000000
--- a/builds/msvc/properties/ReleaseLTCG.props
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Static Release Link Time Code Generation Library</_PropertySheetDisplayName>
- </PropertyGroup>
-
- <ImportGroup Label="PropertySheets">
- <Import Project="Release.props" />
- <Import Project="LTCG.props" />
- </ImportGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/ReleaseSEXE.props b/builds/msvc/properties/ReleaseSEXE.props
deleted file mode 100644
index 2f5600a..0000000
--- a/builds/msvc/properties/ReleaseSEXE.props
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>Console Release Static</_PropertySheetDisplayName>
- <DefaultLinkage>static</DefaultLinkage>
- </PropertyGroup>
-
- <ImportGroup Label="PropertySheets">
- <Import Project="Release.props" />
- <Import Project="EXE.props" />
- </ImportGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
- </ClCompile>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/Win32.props b/builds/msvc/properties/Win32.props
deleted file mode 100644
index f7b1df6..0000000
--- a/builds/msvc/properties/Win32.props
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>x86 Settings</_PropertySheetDisplayName>
- </PropertyGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <PreprocessorDefinitions>WIN32;_WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- <Link>
- <TargetMachine>MachineX86</TargetMachine>
- </Link>
- <Lib>
- <AdditionalOptions>/MACHINE:X86 %(AdditionalOptions)</AdditionalOptions>
- </Lib>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file
diff --git a/builds/msvc/properties/x64.props b/builds/msvc/properties/x64.props
deleted file mode 100644
index 0831f69..0000000
--- a/builds/msvc/properties/x64.props
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
- <PropertyGroup>
- <_PropertySheetDisplayName>x64 Settings</_PropertySheetDisplayName>
- </PropertyGroup>
-
- <ItemDefinitionGroup>
- <ClCompile>
- <!-- Note that Win64 defines may cause WIN32 to become defined when using windows headers,
- but _WIN32 implies Windows 32 bit or above. If the standard headers are not included
- these are sometimes required even for 64 bit builds and should never cause harm there.-->
- <PreprocessorDefinitions>WIN32;_WIN32;WIN64;_WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- </ClCompile>
- <Link>
- <TargetMachine>MachineX64</TargetMachine>
- </Link>
- <Lib>
- <AdditionalOptions>/MACHINE:X64 %(AdditionalOptions)</AdditionalOptions>
- </Lib>
- </ItemDefinitionGroup>
-
-</Project> \ No newline at end of file