BossBase.csproj 4.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.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>{999910D3-4E7D-45B1-BD2C-47289CD4D1AB}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>BossBase</RootNamespace>
  11. <AssemblyName>BossBase</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
  15. <RestorePackages>true</RestorePackages>
  16. <TargetFrameworkProfile />
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>..\..\Bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  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="Microsoft.Practices.Prism.Composition">
  37. <HintPath>..\..\packages\Prism.Composition.5.0.0\lib\NET45\Microsoft.Practices.Prism.Composition.dll</HintPath>
  38. </Reference>
  39. <Reference Include="Microsoft.Practices.Prism.Interactivity, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  40. <SpecificVersion>False</SpecificVersion>
  41. <HintPath>..\..\packages\Prism.Interactivity.5.0.0\lib\NET45\Microsoft.Practices.Prism.Interactivity.dll</HintPath>
  42. </Reference>
  43. <Reference Include="Microsoft.Practices.Prism.MefExtensions">
  44. <HintPath>..\..\packages\Prism.MEFExtensions.5.0.0\lib\NET45\Microsoft.Practices.Prism.MefExtensions.dll</HintPath>
  45. </Reference>
  46. <Reference Include="Microsoft.Practices.Prism.Mvvm">
  47. <HintPath>..\..\packages\Prism.Mvvm.1.0.0\lib\net45\Microsoft.Practices.Prism.Mvvm.dll</HintPath>
  48. </Reference>
  49. <Reference Include="Microsoft.Practices.Prism.Mvvm.Desktop">
  50. <HintPath>..\..\packages\Prism.Mvvm.1.0.0\lib\net45\Microsoft.Practices.Prism.Mvvm.Desktop.dll</HintPath>
  51. </Reference>
  52. <Reference Include="Microsoft.Practices.Prism.PubSubEvents">
  53. <HintPath>..\..\packages\Prism.PubSubEvents.1.0.0\lib\portable-sl4+wp7+windows8+net40\Microsoft.Practices.Prism.PubSubEvents.dll</HintPath>
  54. <Private>True</Private>
  55. </Reference>
  56. <Reference Include="Microsoft.Practices.Prism.SharedInterfaces">
  57. <HintPath>..\..\packages\Prism.Mvvm.1.0.0\lib\net45\Microsoft.Practices.Prism.SharedInterfaces.dll</HintPath>
  58. </Reference>
  59. <Reference Include="Microsoft.Practices.ServiceLocation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  60. <SpecificVersion>False</SpecificVersion>
  61. <HintPath>..\..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll</HintPath>
  62. </Reference>
  63. <Reference Include="System" />
  64. <Reference Include="System.Core" />
  65. <Reference Include="System.Runtime.Serialization" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <Compile Include="CommonDefines.cs" />
  69. <Compile Include="IMessageChannel.cs" />
  70. <Compile Include="ReLoginEvent.cs" />
  71. <Compile Include="LoginOKEvent.cs" />
  72. <Compile Include="Messages.cs" />
  73. <Compile Include="Properties\AssemblyInfo.cs" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <None Include="app.config" />
  77. <None Include="Packages.config" />
  78. </ItemGroup>
  79. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  80. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  81. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  82. Other similar extension points exist, see Microsoft.Common.targets.
  83. <Target Name="BeforeBuild">
  84. </Target>
  85. <Target Name="AfterBuild">
  86. </Target>
  87. -->
  88. </Project>