2021-05-06 08:03:25 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-01-04 14:21:38 +00:00
|
|
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
|
|
|
<ProjectConfiguration Include="Debug|x64">
|
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
<ProjectConfiguration Include="Release|x64">
|
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
|
<VCProjectVersion>16.0</VCProjectVersion>
|
2020-01-06 18:21:16 +00:00
|
|
|
|
<ProjectGuid>{BE34AA99-BEE6-4B50-B237-217E7C88FCB5}</ProjectGuid>
|
2020-01-04 14:21:38 +00:00
|
|
|
|
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
2020-01-06 18:21:16 +00:00
|
|
|
|
<ProjectName>toml_to_json_transcoder</ProjectName>
|
2020-01-04 14:21:38 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
|
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
|
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
2021-11-09 09:22:19 +00:00
|
|
|
|
<PlatformToolset>v143</PlatformToolset>
|
2020-01-04 14:21:38 +00:00
|
|
|
|
<CharacterSet>MultiByte</CharacterSet>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
|
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
|
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
2021-11-09 09:22:19 +00:00
|
|
|
|
<PlatformToolset>v143</PlatformToolset>
|
2020-01-04 14:21:38 +00:00
|
|
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
|
|
<CharacterSet>MultiByte</CharacterSet>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
|
|
|
<ImportGroup Label="PropertySheets">
|
|
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
|
|
</ImportGroup>
|
2021-04-18 12:04:46 +00:00
|
|
|
|
<Import Project="..\toml++.props" />
|
2021-05-06 08:03:25 +00:00
|
|
|
|
<ItemDefinitionGroup>
|
|
|
|
|
<Link>
|
|
|
|
|
<SubSystem>Console</SubSystem>
|
|
|
|
|
</Link>
|
|
|
|
|
</ItemDefinitionGroup>
|
2020-01-04 14:21:38 +00:00
|
|
|
|
<PropertyGroup>
|
2021-05-06 08:03:25 +00:00
|
|
|
|
<LocalDebuggerWorkingDirectory>..\examples</LocalDebuggerWorkingDirectory>
|
2020-01-04 14:21:38 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2021-04-18 12:04:46 +00:00
|
|
|
|
<ClCompile Include="toml_to_json_transcoder.cpp" />
|
2020-01-04 14:21:38 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2021-04-18 12:04:46 +00:00
|
|
|
|
<Natvis Include="..\toml++.natvis" />
|
2020-01-04 14:21:38 +00:00
|
|
|
|
</ItemGroup>
|
2020-04-14 09:45:32 +00:00
|
|
|
|
<ItemGroup>
|
2021-04-18 12:04:46 +00:00
|
|
|
|
<None Include="meson.build" />
|
2020-04-14 09:45:32 +00:00
|
|
|
|
</ItemGroup>
|
2021-05-21 11:28:45 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Text Include="CMakeLists.txt" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2022-01-04 14:23:45 +00:00
|
|
|
|
<ClInclude Include="examples.h" />
|
2021-05-21 11:28:45 +00:00
|
|
|
|
</ItemGroup>
|
2020-01-04 14:21:38 +00:00
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
2022-01-03 18:51:03 +00:00
|
|
|
|
</Project>
|