BossCommand.csproj 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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>{6C16281F-5550-4024-9504-295C63889E4F}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>BossCommand</RootNamespace>
  11. <AssemblyName>BossCommand</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="System" />
  37. <Reference Include="System.Core" />
  38. <Reference Include="System.Runtime.Serialization" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Compile Include="ABossCommand.cs" />
  42. <Compile Include="BCForbidLogin.cs" />
  43. <Compile Include="BCCommand.cs" />
  44. <Compile Include="BCGetCharacterInfo.cs" />
  45. <Compile Include="BCSendMail.cs" />
  46. <Compile Include="BCServerInfo.cs" />
  47. <Compile Include="BCReloadWorld.cs" />
  48. <Compile Include="BCForbiddenCharacter.cs" />
  49. <Compile Include="Properties\AssemblyInfo.cs" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <ProjectReference Include="..\..\Platform\Helper\Helper.csproj">
  53. <Project>{24233CD5-A5DF-484B-A482-B79CB7A0D9CB}</Project>
  54. <Name>Helper</Name>
  55. </ProjectReference>
  56. <ProjectReference Include="..\..\Platform\Logger\Logger.csproj">
  57. <Project>{72e16572-fc1f-4a9e-bc96-035417239298}</Project>
  58. <Name>Logger</Name>
  59. </ProjectReference>
  60. <ProjectReference Include="..\BossBase\BossBase.csproj">
  61. <Project>{999910D3-4E7D-45B1-BD2C-47289CD4D1AB}</Project>
  62. <Name>BossBase</Name>
  63. </ProjectReference>
  64. </ItemGroup>
  65. <ItemGroup>
  66. <None Include="App.config" />
  67. </ItemGroup>
  68. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  69. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  70. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  71. Other similar extension points exist, see Microsoft.Common.targets.
  72. <Target Name="BeforeBuild">
  73. </Target>
  74. <Target Name="AfterBuild">
  75. </Target>
  76. -->
  77. </Project>