markus / Demo / Demo.csproj @ master
이력 | 보기 | 이력해설 | 다운로드 (4.8 KB)
1 | 787a4489 | KangIngu | <?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>{B0E541F9-739E-46F8-956C-104CB384466A}</ProjectGuid> |
||
8 | <OutputType>WinExe</OutputType> |
||
9 | <RootNamespace>Demo</RootNamespace> |
||
10 | <AssemblyName>Demo</AssemblyName> |
||
11 | <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> |
||
12 | <FileAlignment>512</FileAlignment> |
||
13 | <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> |
||
14 | <WarningLevel>4</WarningLevel> |
||
15 | </PropertyGroup> |
||
16 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
||
17 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
18 | <DebugSymbols>true</DebugSymbols> |
||
19 | <DebugType>full</DebugType> |
||
20 | <Optimize>false</Optimize> |
||
21 | <OutputPath>bin\Debug\</OutputPath> |
||
22 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
23 | <ErrorReport>prompt</ErrorReport> |
||
24 | <WarningLevel>4</WarningLevel> |
||
25 | </PropertyGroup> |
||
26 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
||
27 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
28 | <DebugType>pdbonly</DebugType> |
||
29 | <Optimize>true</Optimize> |
||
30 | <OutputPath>bin\Release\</OutputPath> |
||
31 | <DefineConstants>TRACE</DefineConstants> |
||
32 | <ErrorReport>prompt</ErrorReport> |
||
33 | <WarningLevel>4</WarningLevel> |
||
34 | </PropertyGroup> |
||
35 | <ItemGroup> |
||
36 | <Reference Include="System" /> |
||
37 | <Reference Include="System.Data" /> |
||
38 | <Reference Include="System.Xml" /> |
||
39 | <Reference Include="Microsoft.CSharp" /> |
||
40 | <Reference Include="System.Core" /> |
||
41 | <Reference Include="System.Xml.Linq" /> |
||
42 | <Reference Include="System.Data.DataSetExtensions" /> |
||
43 | <Reference Include="System.Xaml"> |
||
44 | <RequiredTargetFramework>4.0</RequiredTargetFramework> |
||
45 | </Reference> |
||
46 | <Reference Include="Telerik.Windows.Controls"> |
||
47 | <HintPath>..\..\..\..\..\Program Files (x86)\Progress\Telerik UI for WPF R1 2018\Binaries\WPF40\Telerik.Windows.Controls.dll</HintPath> |
||
48 | </Reference> |
||
49 | <Reference Include="Telerik.Windows.Controls.Navigation"> |
||
50 | <HintPath>..\..\..\..\..\Program Files (x86)\Progress\Telerik UI for WPF R1 2018\Binaries\WPF40\Telerik.Windows.Controls.Navigation.dll</HintPath> |
||
51 | </Reference> |
||
52 | <Reference Include="Telerik.Windows.Data"> |
||
53 | <HintPath>..\..\..\..\..\Program Files (x86)\Progress\Telerik UI for WPF R1 2018\Binaries\WPF40\Telerik.Windows.Data.dll</HintPath> |
||
54 | </Reference> |
||
55 | <Reference Include="ToggleSwitch, Version=1.1.2.0, Culture=neutral, PublicKeyToken=8637099990568f75, processorArchitecture=MSIL"> |
||
56 | <HintPath>..\packages\ToggleSwitch.1.1.2\lib\net40-client\ToggleSwitch.dll</HintPath> |
||
57 | </Reference> |
||
58 | <Reference Include="UIAutomationProvider" /> |
||
59 | <Reference Include="UIAutomationTypes" /> |
||
60 | <Reference Include="WindowsBase" /> |
||
61 | <Reference Include="PresentationCore" /> |
||
62 | <Reference Include="PresentationFramework" /> |
||
63 | </ItemGroup> |
||
64 | <ItemGroup> |
||
65 | <ApplicationDefinition Include="App.xaml"> |
||
66 | <Generator>MSBuild:Compile</Generator> |
||
67 | <SubType>Designer</SubType> |
||
68 | </ApplicationDefinition> |
||
69 | <Page Include="MainWindow.xaml"> |
||
70 | <Generator>MSBuild:Compile</Generator> |
||
71 | <SubType>Designer</SubType> |
||
72 | </Page> |
||
73 | <Compile Include="App.xaml.cs"> |
||
74 | <DependentUpon>App.xaml</DependentUpon> |
||
75 | <SubType>Code</SubType> |
||
76 | </Compile> |
||
77 | <Compile Include="MainWindow.xaml.cs"> |
||
78 | <DependentUpon>MainWindow.xaml</DependentUpon> |
||
79 | <SubType>Code</SubType> |
||
80 | </Compile> |
||
81 | </ItemGroup> |
||
82 | <ItemGroup> |
||
83 | <Compile Include="Person.cs" /> |
||
84 | <Compile Include="Properties\AssemblyInfo.cs"> |
||
85 | <SubType>Code</SubType> |
||
86 | </Compile> |
||
87 | <Compile Include="Properties\Resources.Designer.cs"> |
||
88 | <AutoGen>True</AutoGen> |
||
89 | <DesignTime>True</DesignTime> |
||
90 | <DependentUpon>Resources.resx</DependentUpon> |
||
91 | </Compile> |
||
92 | <Compile Include="Properties\Settings.Designer.cs"> |
||
93 | <AutoGen>True</AutoGen> |
||
94 | <DependentUpon>Settings.settings</DependentUpon> |
||
95 | <DesignTimeSharedInput>True</DesignTimeSharedInput> |
||
96 | </Compile> |
||
97 | <EmbeddedResource Include="Properties\Resources.resx"> |
||
98 | <Generator>ResXFileCodeGenerator</Generator> |
||
99 | <LastGenOutput>Resources.Designer.cs</LastGenOutput> |
||
100 | </EmbeddedResource> |
||
101 | <None Include="packages.config" /> |
||
102 | <None Include="Properties\Settings.settings"> |
||
103 | <Generator>SettingsSingleFileGenerator</Generator> |
||
104 | <LastGenOutput>Settings.Designer.cs</LastGenOutput> |
||
105 | </None> |
||
106 | </ItemGroup> |
||
107 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
||
108 | </Project> |