ProtobufTool.csproj 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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>{87537C92-B2C7-4E46-A6FB-02B73215C100}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>ProtobufTool</RootNamespace>
  11. <AssemblyName>ProtobufTool</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>..\..\Bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <RegisterForComInterop>false</RegisterForComInterop>
  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. <PropertyGroup>
  35. <SignAssembly>false</SignAssembly>
  36. </PropertyGroup>
  37. <PropertyGroup>
  38. <AssemblyOriginatorKeyFile>..\..\Egametang.pfx</AssemblyOriginatorKeyFile>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="EnvDTE, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
  42. <EmbedInteropTypes>False</EmbedInteropTypes>
  43. </Reference>
  44. <Reference Include="Microsoft.VisualStudio.OLE.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  45. <Reference Include="Microsoft.VisualStudio.Shell.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  46. <Reference Include="Microsoft.VisualStudio.TextTemplating.VSHost.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
  47. <Reference Include="System" />
  48. <Reference Include="System.Core" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Compile Include="ProtobufGenerator.cs" />
  52. <Compile Include="Properties\AssemblyInfo.cs" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <None Include="..\..\Egametang.pfx">
  56. <Link>Egametang.pfx</Link>
  57. </None>
  58. <None Include="ProtobufGenerator.reg" />
  59. <None Include="register.bat">
  60. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  61. </None>
  62. </ItemGroup>
  63. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  64. <PropertyGroup>
  65. <PreBuildEvent>
  66. </PreBuildEvent>
  67. </PropertyGroup>
  68. <PropertyGroup>
  69. <PostBuildEvent>
  70. </PostBuildEvent>
  71. </PropertyGroup>
  72. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  73. Other similar extension points exist, see Microsoft.Common.targets.
  74. <Target Name="BeforeBuild">
  75. </Target>
  76. <Target Name="AfterBuild">
  77. </Target>
  78. -->
  79. </Project>