Login.csproj 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" 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>{5AA48F9A-455D-4CD8-A605-A3AC38283E60}</ProjectGuid>
  8. <OutputType>library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Login</RootNamespace>
  11. <AssemblyName>Login</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  15. <WarningLevel>4</WarningLevel>
  16. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\..\</SolutionDir>
  17. <RestorePackages>true</RestorePackages>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>..\..\..\Bin\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="Microsoft.Practices.Prism">
  38. <HintPath>..\..\..\packages\Prism.4.1.0.0\lib\NET40\Microsoft.Practices.Prism.dll</HintPath>
  39. </Reference>
  40. <Reference Include="Microsoft.Practices.Prism.MefExtensions">
  41. <HintPath>..\..\..\packages\Prism.MEFExtensions.4.1.0.0\lib\NET40\Microsoft.Practices.Prism.MefExtensions.dll</HintPath>
  42. </Reference>
  43. <Reference Include="System" />
  44. <Reference Include="System.ComponentModel.Composition" />
  45. <Reference Include="System.ComponentModel.DataAnnotations" />
  46. <Reference Include="System.Configuration" />
  47. <Reference Include="System.Xml" />
  48. <Reference Include="System.Core" />
  49. <Reference Include="System.Xaml">
  50. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  51. </Reference>
  52. <Reference Include="WindowsBase" />
  53. <Reference Include="PresentationCore" />
  54. <Reference Include="PresentationFramework" />
  55. <Reference Include="Xceed.Wpf.AvalonDock">
  56. <HintPath>..\..\..\packages\Extended.Wpf.Toolkit.2.0.0\lib\net40\Xceed.Wpf.AvalonDock.dll</HintPath>
  57. </Reference>
  58. <Reference Include="Xceed.Wpf.AvalonDock.Themes.Aero">
  59. <HintPath>..\..\..\packages\Extended.Wpf.Toolkit.2.0.0\lib\net40\Xceed.Wpf.AvalonDock.Themes.Aero.dll</HintPath>
  60. </Reference>
  61. <Reference Include="Xceed.Wpf.AvalonDock.Themes.Metro">
  62. <HintPath>..\..\..\packages\Extended.Wpf.Toolkit.2.0.0\lib\net40\Xceed.Wpf.AvalonDock.Themes.Metro.dll</HintPath>
  63. </Reference>
  64. <Reference Include="Xceed.Wpf.AvalonDock.Themes.VS2010">
  65. <HintPath>..\..\..\packages\Extended.Wpf.Toolkit.2.0.0\lib\net40\Xceed.Wpf.AvalonDock.Themes.VS2010.dll</HintPath>
  66. </Reference>
  67. <Reference Include="Xceed.Wpf.DataGrid, Version=2.0.0.0, Culture=neutral, PublicKeyToken=3e4669d2f30244f4, processorArchitecture=MSIL">
  68. <SpecificVersion>False</SpecificVersion>
  69. <HintPath>..\..\..\packages\Extended.Wpf.Toolkit.2.0.0\lib\net40\Xceed.Wpf.DataGrid.dll</HintPath>
  70. </Reference>
  71. <Reference Include="Xceed.Wpf.Toolkit, Version=2.0.0.0, Culture=neutral, PublicKeyToken=3e4669d2f30244f4, processorArchitecture=MSIL">
  72. <SpecificVersion>False</SpecificVersion>
  73. <HintPath>..\..\..\packages\Extended.Wpf.Toolkit.2.0.0\lib\net40\Xceed.Wpf.Toolkit.dll</HintPath>
  74. </Reference>
  75. </ItemGroup>
  76. <ItemGroup>
  77. <Compile Include="LoginViewModel.cs" />
  78. <Page Include="LoginView.xaml">
  79. <Generator>MSBuild:Compile</Generator>
  80. <SubType>Designer</SubType>
  81. </Page>
  82. <Compile Include="LoginModule.cs" />
  83. <Compile Include="LoginView.xaml.cs">
  84. <DependentUpon>LoginView.xaml</DependentUpon>
  85. <SubType>Code</SubType>
  86. </Compile>
  87. </ItemGroup>
  88. <ItemGroup>
  89. <AppDesigner Include="Properties\" />
  90. </ItemGroup>
  91. <ItemGroup>
  92. <Folder Include="Properties\" />
  93. </ItemGroup>
  94. <ItemGroup>
  95. <None Include="Packages.config" />
  96. </ItemGroup>
  97. <ItemGroup>
  98. <ProjectReference Include="..\..\..\Platform\Log\Log.csproj">
  99. <Project>{72e16572-fc1f-4a9e-bc96-035417239298}</Project>
  100. <Name>Log</Name>
  101. </ProjectReference>
  102. <ProjectReference Include="..\..\BossBase\BossBase.csproj">
  103. <Project>{999910D3-4E7D-45B1-BD2C-47289CD4D1AB}</Project>
  104. <Name>BossBase</Name>
  105. </ProjectReference>
  106. <ProjectReference Include="..\..\BossClient\BossClient.csproj">
  107. <Project>{8650195A-7904-4EBC-9D81-B392A7E9B9B3}</Project>
  108. <Name>BossClient</Name>
  109. </ProjectReference>
  110. <ProjectReference Include="..\..\Infrastructure\Infrastructure.csproj">
  111. <Project>{48a2e149-0dac-41b4-bb54-dfbccd6d42b3}</Project>
  112. <Name>Infrastructure</Name>
  113. </ProjectReference>
  114. </ItemGroup>
  115. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  116. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  117. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  118. Other similar extension points exist, see Microsoft.Common.targets.
  119. <Target Name="BeforeBuild">
  120. </Target>
  121. <Target Name="AfterBuild">
  122. </Target>
  123. -->
  124. </Project>