BossBase.csproj 4.5 KB

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