Helper.csproj 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>{24233CD5-A5DF-484B-A482-B79CB7A0D9CB}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Helper</RootNamespace>
  11. <AssemblyName>Helper</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\</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="protobuf-net, Version=2.0.0.621, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">
  36. <SpecificVersion>False</SpecificVersion>
  37. <HintPath>..\..\packages\protobuf-net.2.0.0.621\lib\net40\protobuf-net.dll</HintPath>
  38. </Reference>
  39. <Reference Include="System" />
  40. <Reference Include="System.Core" />
  41. <Reference Include="System.Numerics" />
  42. <Reference Include="System.Runtime.Serialization" />
  43. <Reference Include="System.Xml" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="ByteHelper.cs" />
  47. <Compile Include="BigIntegerHelper.cs" />
  48. <Compile Include="JsonHelper.cs" />
  49. <Compile Include="LoaderHelper.cs" />
  50. <Compile Include="ProtobufHelper.cs" />
  51. <Compile Include="StringHelper.cs" />
  52. <Compile Include="TimeHelper.cs" />
  53. <Compile Include="XmlHelper.cs" />
  54. <Compile Include="Properties\AssemblyInfo.cs" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <None Include="Packages.config" />
  58. </ItemGroup>
  59. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  60. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  61. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  62. Other similar extension points exist, see Microsoft.Common.targets.
  63. <Target Name="BeforeBuild">
  64. </Target>
  65. <Target Name="AfterBuild">
  66. </Target>
  67. -->
  68. </Project>