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.Extras.WPF4, Version=3.0.0.32852, Culture=neutral, PublicKeyToken=1673db7d5906b0ad, processorArchitecture=MSIL">
  39. <SpecificVersion>False</SpecificVersion>
  40. <HintPath>..\packages\MvvmLight.3.0.3\lib\net40\GalaSoft.MvvmLight.Extras.WPF4.dll</HintPath>
  41. </Reference>
  42. <Reference Include="GalaSoft.MvvmLight.WPF4, Version=3.0.0.32852, Culture=neutral, PublicKeyToken=63eb5c012e0b3c1c, processorArchitecture=MSIL">
  43. <SpecificVersion>False</SpecificVersion>
  44. <HintPath>..\packages\MvvmLight.3.0.3\lib\net40\GalaSoft.MvvmLight.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="NLog">
  51. <HintPath>..\packages\NLog.2.0.0.0\lib\NET40\NLog.dll</HintPath>
  52. </Reference>
  53. <Reference Include="NLog.Extended">
  54. <HintPath>..\packages\NLog.2.0.0.0\lib\NET40\NLog.Extended.dll</HintPath>
  55. </Reference>
  56. <Reference Include="System" />
  57. <Reference Include="System.Data" />
  58. <Reference Include="System.Windows.Interactivity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  59. <HintPath>..\packages\MvvmLight.3.0.3\lib\net40\System.Windows.Interactivity.dll</HintPath>
  60. </Reference>
  61. <Reference Include="System.Xml" />
  62. <Reference Include="Microsoft.CSharp" />
  63. <Reference Include="System.Core" />
  64. <Reference Include="System.Xml.Linq" />
  65. <Reference Include="System.Data.DataSetExtensions" />
  66. <Reference Include="System.Xaml">
  67. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  68. </Reference>
  69. <Reference Include="WindowsBase" />
  70. <Reference Include="PresentationCore" />
  71. <Reference Include="PresentationFramework" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <ApplicationDefinition Include="App.xaml">
  75. <Generator>MSBuild:Compile</Generator>
  76. <SubType>Designer</SubType>
  77. </ApplicationDefinition>
  78. <None Include="NLog.config">
  79. <SubType>Designer</SubType>
  80. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  81. </None>
  82. <Compile Include="Model\Main.cs" />
  83. <Compile Include="ViewModel\MainViewModel.cs" />
  84. <Compile Include="ViewModel\ViewModelLocator.cs" />
  85. <Compile Include="View\MainView.xaml.cs">
  86. <DependentUpon>MainView.xaml</DependentUpon>
  87. </Compile>
  88. <Page Include="MainWindow.xaml">
  89. <Generator>MSBuild:Compile</Generator>
  90. <SubType>Designer</SubType>
  91. </Page>
  92. <Compile Include="App.xaml.cs">
  93. <DependentUpon>App.xaml</DependentUpon>
  94. <SubType>Code</SubType>
  95. </Compile>
  96. <Compile Include="MainWindow.xaml.cs">
  97. <DependentUpon>MainWindow.xaml</DependentUpon>
  98. <SubType>Code</SubType>
  99. </Compile>
  100. <Page Include="View\MainView.xaml">
  101. <SubType>Designer</SubType>
  102. <Generator>MSBuild:Compile</Generator>
  103. </Page>
  104. </ItemGroup>
  105. <ItemGroup>
  106. <AppDesigner Include="Properties\" />
  107. </ItemGroup>
  108. <ItemGroup>
  109. <Folder Include="Properties\" />
  110. </ItemGroup>
  111. <ItemGroup>
  112. <ProjectReference Include="..\Thread\Thread.csproj">
  113. <Project>{01AE803B-71F3-4DD6-BEAA-6BA7C2D13E23}</Project>
  114. <Name>Thread</Name>
  115. </ProjectReference>
  116. </ItemGroup>
  117. <ItemGroup>
  118. <None Include="Packages.config">
  119. <SubType>Designer</SubType>
  120. </None>
  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>