UrhoSharpVsix.csproj 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
  5. <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
  6. </PropertyGroup>
  7. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  8. <PropertyGroup>
  9. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  10. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  11. <SchemaVersion>2.0</SchemaVersion>
  12. <ProjectTypeGuids>{82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  13. <ProjectGuid>{26A16684-0BC8-426E-8ECD-21E3D23926D8}</ProjectGuid>
  14. <OutputType>Library</OutputType>
  15. <AppDesignerFolder>Properties</AppDesignerFolder>
  16. <RootNamespace>UrhoSharpVsix</RootNamespace>
  17. <AssemblyName>UrhoSharpVsix</AssemblyName>
  18. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  19. <GeneratePkgDefFile>false</GeneratePkgDefFile>
  20. <IncludeAssemblyInVSIXContainer>false</IncludeAssemblyInVSIXContainer>
  21. <IncludeDebugSymbolsInVSIXContainer>false</IncludeDebugSymbolsInVSIXContainer>
  22. <IncludeDebugSymbolsInLocalVSIXDeployment>false</IncludeDebugSymbolsInLocalVSIXDeployment>
  23. <CopyBuildOutputToOutputDirectory>false</CopyBuildOutputToOutputDirectory>
  24. <CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  27. <DebugSymbols>true</DebugSymbols>
  28. <DebugType>full</DebugType>
  29. <Optimize>false</Optimize>
  30. <OutputPath>bin\Debug\</OutputPath>
  31. <DefineConstants>DEBUG;TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  36. <DebugType>pdbonly</DebugType>
  37. <Optimize>true</Optimize>
  38. <OutputPath>bin\Release\</OutputPath>
  39. <DefineConstants>TRACE</DefineConstants>
  40. <ErrorReport>prompt</ErrorReport>
  41. <WarningLevel>4</WarningLevel>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Compile Include="Properties\AssemblyInfo.cs" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Content Include="ProjectTemplates\UrhoSharp.zip">
  48. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  49. <IncludeInVSIX>true</IncludeInVSIX>
  50. </Content>
  51. <None Include="source.extension.vsixmanifest">
  52. <SubType>Designer</SubType>
  53. </None>
  54. </ItemGroup>
  55. <ItemGroup>
  56. <Content Include="index.html" />
  57. <Content Include="stylesheet.css" />
  58. <Content Include="UrhoSharp.png">
  59. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  60. <IncludeInVSIX>true</IncludeInVSIX>
  61. </Content>
  62. <Content Include="UrhoSharpIco.ico">
  63. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  64. <IncludeInVSIX>true</IncludeInVSIX>
  65. </Content>
  66. </ItemGroup>
  67. <ItemGroup>
  68. <ProjectReference Include="UrhoSharpTemplateWizard\UrhoSharpTemplateWizard.csproj">
  69. <Project>{743b2c05-97bf-416f-a512-b4d8ff3eebd2}</Project>
  70. <Name>UrhoSharpTemplateWizard</Name>
  71. <IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup%3bBuiltProjectOutputGroupDependencies%3bGetCopyToOutputDirectoryItems%3bSatelliteDllsProjectOutputGroup%3b</IncludeOutputGroupsInVSIX>
  72. <IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup%3b</IncludeOutputGroupsInVSIXLocalOnly>
  73. </ProjectReference>
  74. </ItemGroup>
  75. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  76. <Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
  77. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  78. Other similar extension points exist, see Microsoft.Common.targets.
  79. <Target Name="BeforeBuild">
  80. </Target>
  81. <Target Name="AfterBuild">
  82. </Target>
  83. -->
  84. </Project>