master
vcxproj 82 lines 4.44 KB
Raw
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <ItemGroup Label="ProjectConfigurations">
4 <ProjectConfiguration Include="Debug|x64">
5 <Configuration>Debug</Configuration>
6 <Platform>x64</Platform>
7 </ProjectConfiguration>
8 <ProjectConfiguration Include="Release|x64">
9 <Configuration>Release</Configuration>
10 <Platform>x64</Platform>
11 </ProjectConfiguration>
12 <ProjectConfiguration Include="Debug|ARM64">
13 <Configuration>Debug</Configuration>
14 <Platform>ARM64</Platform>
15 </ProjectConfiguration>
16 <ProjectConfiguration Include="Release|ARM64">
17 <Configuration>Release</Configuration>
18 <Platform>ARM64</Platform>
19 </ProjectConfiguration>
20 </ItemGroup>
21 <PropertyGroup Label="Globals">
22 <VCProjectVersion>17.0</VCProjectVersion>
23 <Keyword>Win32Proj</Keyword>
24 <ProjectGuid>{35158918-896e-42b7-b4e8-cf98816259aa}</ProjectGuid>
25 <RootNamespace>WSLCNeofetch</RootNamespace>
26 <TargetName>neofetch</TargetName>
27 <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
28 <CppWinRTOptimized>true</CppWinRTOptimized>
29 <CppWinRTRootNamespaceAutoMerge>true</CppWinRTRootNamespaceAutoMerge>
30 <AppxPackage>false</AppxPackage>
31 </PropertyGroup>
32 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
33 <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
34 <ConfigurationType>Application</ConfigurationType>
35 <UseDebugLibraries>true</UseDebugLibraries>
36 <PlatformToolset>v145</PlatformToolset>
37 <CharacterSet>Unicode</CharacterSet>
38 </PropertyGroup>
39 <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
40 <ConfigurationType>Application</ConfigurationType>
41 <UseDebugLibraries>false</UseDebugLibraries>
42 <PlatformToolset>v145</PlatformToolset>
43 <WholeProgramOptimization>true</WholeProgramOptimization>
44 <CharacterSet>Unicode</CharacterSet>
45 </PropertyGroup>
46 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
47 <ImportGroup Label="ExtensionSettings">
48 <Import Project="packages\Microsoft.Windows.CppWinRT.3.0.260520.1\build\native\Microsoft.Windows.CppWinRT.props" Condition="Exists('packages\Microsoft.Windows.CppWinRT.3.0.260520.1\build\native\Microsoft.Windows.CppWinRT.props')" />
49 </ImportGroup>
50 <PropertyGroup Label="UserMacros" />
51 <ItemDefinitionGroup>
52 <ClCompile>
53 <WarningLevel>Level3</WarningLevel>
54 <SDLCheck>true</SDLCheck>
55 <ConformanceMode>true</ConformanceMode>
56 <LanguageStandard>stdcpp17</LanguageStandard>
57 <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
58 </ClCompile>
59 <Link>
60 <SubSystem>Console</SubSystem>
61 <GenerateDebugInformation>true</GenerateDebugInformation>
62 </Link>
63 </ItemDefinitionGroup>
64 <ItemGroup>
65 <ClCompile Include="neofetch.cpp" />
66 </ItemGroup>
67 <ItemGroup>
68 <None Include="packages.config" />
69 </ItemGroup>
70 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
71 <ImportGroup Label="ExtensionTargets">
72 <Import Project="packages\Microsoft.Windows.CppWinRT.3.0.260520.1\build\native\Microsoft.Windows.CppWinRT.targets" Condition="Exists('packages\Microsoft.Windows.CppWinRT.3.0.260520.1\build\native\Microsoft.Windows.CppWinRT.targets')" />
73 <Import Project="packages\Microsoft.WSL.Containers.2.9.3\build\native\Microsoft.WSL.Containers.targets" Condition="Exists('packages\Microsoft.WSL.Containers.2.9.3\build\native\Microsoft.WSL.Containers.targets')" />
74 </ImportGroup>
75 <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
76 <PropertyGroup>
77 <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
78 </PropertyGroup>
79 <Error Condition="!Exists('packages\Microsoft.Windows.CppWinRT.3.0.260520.1\build\native\Microsoft.Windows.CppWinRT.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.Windows.CppWinRT.3.0.260520.1\build\native\Microsoft.Windows.CppWinRT.props'))" />
80 <Error Condition="!Exists('packages\Microsoft.WSL.Containers.2.9.3\build\native\Microsoft.WSL.Containers.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.WSL.Containers.2.9.3\build\native\Microsoft.WSL.Containers.targets'))" />
81 </Target>
82 </Project>