Editor.csproj 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{B29100C8-6E7F-4C7D-91AB-0153D0D28663}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Editor</RootNamespace>
  12. <AssemblyName>Editor</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  15. <FileAlignment>512</FileAlignment>
  16. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  17. <WarningLevel>4</WarningLevel>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>bin\Debug\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. <RunCodeAnalysis>true</RunCodeAnalysis>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="GalaSoft.MvvmLight.WPF4">
  39. <SpecificVersion>False</SpecificVersion>
  40. <HintPath>C:\Program Files\Laurent Bugnion (GalaSoft)\Mvvm Light Toolkit\Binaries\WPF4\GalaSoft.MvvmLight.WPF4.dll</HintPath>
  41. </Reference>
  42. <Reference Include="GalaSoft.MvvmLight.Extras.WPF4">
  43. <SpecificVersion>False</SpecificVersion>
  44. <HintPath>C:\Program Files\Laurent Bugnion (GalaSoft)\Mvvm Light Toolkit\Binaries\WPF4\GalaSoft.MvvmLight.Extras.WPF4.dll</HintPath>
  45. </Reference>
  46. <Reference Include="Microsoft.Practices.ServiceLocation">
  47. <SpecificVersion>False</SpecificVersion>
  48. <HintPath>C:\Program Files\Laurent Bugnion (GalaSoft)\Mvvm Light Toolkit\Binaries\WPF4\Microsoft.Practices.ServiceLocation.dll</HintPath>
  49. </Reference>
  50. <Reference Include="System.Windows.Interactivity">
  51. <SpecificVersion>False</SpecificVersion>
  52. <HintPath>C:\Program Files\Laurent Bugnion (GalaSoft)\Mvvm Light Toolkit\Binaries\WPF4\System.Windows.Interactivity.dll</HintPath>
  53. </Reference>
  54. <Reference Include="System" />
  55. <Reference Include="System.Data" />
  56. <Reference Include="System.Xml" />
  57. <Reference Include="Microsoft.CSharp" />
  58. <Reference Include="System.Core" />
  59. <Reference Include="System.Xml.Linq" />
  60. <Reference Include="System.Data.DataSetExtensions" />
  61. <Reference Include="System.Xaml">
  62. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  63. </Reference>
  64. <Reference Include="WindowsBase" />
  65. <Reference Include="PresentationCore" />
  66. <Reference Include="PresentationFramework" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <ApplicationDefinition Include="App.xaml">
  70. <Generator>MSBuild:Compile</Generator>
  71. <SubType>Designer</SubType>
  72. </ApplicationDefinition>
  73. <Compile Include="Model\DataService.cs" />
  74. <Compile Include="Model\IDataService.cs" />
  75. <Compile Include="ViewModel\MainViewModel.cs" />
  76. <Compile Include="ViewModel\ViewModelLocator.cs" />
  77. <Compile Include="View\MainView.xaml.cs">
  78. <DependentUpon>MainView.xaml</DependentUpon>
  79. </Compile>
  80. <Page Include="MainWindow.xaml">
  81. <Generator>MSBuild:Compile</Generator>
  82. <SubType>Designer</SubType>
  83. </Page>
  84. <Compile Include="App.xaml.cs">
  85. <DependentUpon>App.xaml</DependentUpon>
  86. <SubType>Code</SubType>
  87. </Compile>
  88. <Compile Include="MainWindow.xaml.cs">
  89. <DependentUpon>MainWindow.xaml</DependentUpon>
  90. <SubType>Code</SubType>
  91. </Compile>
  92. <Page Include="View\MainView.xaml">
  93. <SubType>Designer</SubType>
  94. <Generator>MSBuild:Compile</Generator>
  95. </Page>
  96. </ItemGroup>
  97. <ItemGroup>
  98. <Compile Include="Properties\AssemblyInfo.cs">
  99. <SubType>Code</SubType>
  100. </Compile>
  101. <Compile Include="Properties\Resources.Designer.cs">
  102. <AutoGen>True</AutoGen>
  103. <DesignTime>True</DesignTime>
  104. <DependentUpon>Resources.resx</DependentUpon>
  105. </Compile>
  106. <Compile Include="Properties\Settings.Designer.cs">
  107. <AutoGen>True</AutoGen>
  108. <DependentUpon>Settings.settings</DependentUpon>
  109. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  110. </Compile>
  111. <EmbeddedResource Include="Properties\Resources.resx">
  112. <Generator>ResXFileCodeGenerator</Generator>
  113. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  114. </EmbeddedResource>
  115. <None Include="Properties\Settings.settings">
  116. <Generator>SettingsSingleFileGenerator</Generator>
  117. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  118. </None>
  119. <AppDesigner Include="Properties\" />
  120. </ItemGroup>
  121. <ItemGroup />
  122. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  123. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  124. Other similar extension points exist, see Microsoft.Common.targets.
  125. <Target Name="BeforeBuild">
  126. </Target>
  127. <Target Name="AfterBuild">
  128. </Target>
  129. -->
  130. </Project>