Editor.csproj 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{C46F3337-0F48-4A72-84AD-8FDD1F159BB0}</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|x86' ">
  20. <PlatformTarget>x86</PlatformTarget>
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  30. <PlatformTarget>x86</PlatformTarget>
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Reference Include="Microsoft.Practices.Prism">
  40. <HintPath>..\Packages\Prism.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.dll</HintPath>
  41. </Reference>
  42. <Reference Include="Microsoft.Practices.Prism.Interactivity">
  43. <HintPath>..\Packages\Prism.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.Interactivity.dll</HintPath>
  44. </Reference>
  45. <Reference Include="Microsoft.Practices.Prism.MefExtensions">
  46. <HintPath>..\Packages\Prism.MEFExtensions.4.0.0.0\lib\NET40\Microsoft.Practices.Prism.MefExtensions.dll</HintPath>
  47. </Reference>
  48. <Reference Include="Microsoft.Practices.ServiceLocation">
  49. <HintPath>..\Packages\CommonServiceLocator.1.0\lib\NET35\Microsoft.Practices.ServiceLocation.dll</HintPath>
  50. </Reference>
  51. <Reference Include="System" />
  52. <Reference Include="System.ComponentModel.Composition" />
  53. <Reference Include="System.Data" />
  54. <Reference Include="System.Xml" />
  55. <Reference Include="Microsoft.CSharp" />
  56. <Reference Include="System.Core" />
  57. <Reference Include="System.Xml.Linq" />
  58. <Reference Include="System.Data.DataSetExtensions" />
  59. <Reference Include="System.Xaml">
  60. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  61. </Reference>
  62. <Reference Include="WindowsBase" />
  63. <Reference Include="PresentationCore" />
  64. <Reference Include="PresentationFramework" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <ApplicationDefinition Include="App.xaml">
  68. <Generator>MSBuild:Compile</Generator>
  69. <SubType>Designer</SubType>
  70. </ApplicationDefinition>
  71. <Compile Include="Bootstrapper.cs" />
  72. <Compile Include="Shell.xaml.cs">
  73. <DependentUpon>Shell.xaml</DependentUpon>
  74. </Compile>
  75. <Compile Include="ShellViewModel.cs" />
  76. <Compile Include="App.xaml.cs">
  77. <DependentUpon>App.xaml</DependentUpon>
  78. <SubType>Code</SubType>
  79. </Compile>
  80. <Page Include="Shell.xaml">
  81. <Generator>MSBuild:Compile</Generator>
  82. <SubType>Designer</SubType>
  83. </Page>
  84. </ItemGroup>
  85. <ItemGroup>
  86. <AppDesigner Include="Properties\" />
  87. </ItemGroup>
  88. <ItemGroup>
  89. <Folder Include="Properties\" />
  90. </ItemGroup>
  91. <ItemGroup>
  92. <ProjectReference Include="..\Infrastructure\Infrastructure.csproj">
  93. <Project>{48A2E149-0DAC-41B4-BB54-DFBCCD6D42B3}</Project>
  94. <Name>Infrastructure</Name>
  95. </ProjectReference>
  96. <ProjectReference Include="..\Modules\LoginModule\Login.csproj">
  97. <Project>{7CC7BF9C-13BE-470E-BC35-6A1944767899}</Project>
  98. <Name>Login</Name>
  99. </ProjectReference>
  100. </ItemGroup>
  101. <ItemGroup>
  102. <None Include="NLog.config" />
  103. <None Include="Packages.config" />
  104. </ItemGroup>
  105. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  106. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  107. Other similar extension points exist, see Microsoft.Common.targets.
  108. <Target Name="BeforeBuild">
  109. </Target>
  110. <Target Name="AfterBuild">
  111. </Target>
  112. -->
  113. </Project>