Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/tools/PersistenceCodeFix/PersistenceCodeFix/PersistenceCodeFix.Vsix/PersistenceCodeFix.Vsix.csproj @ 14933

Last change on this file since 14933 was 14933, checked in by gkronber, 7 years ago

#2520 added a code fix for generating StorableTypeAttributes

File size: 3.4 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (c)  Microsoft.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information. -->
3<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4  <PropertyGroup>
5    <MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
6    <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
7  </PropertyGroup>
8  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
9  <PropertyGroup>
10    <Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
11    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
12    <PlatformTarget>AnyCPU</PlatformTarget>
13    <SchemaVersion>2.0</SchemaVersion>
14    <ProjectTypeGuids>{82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
15    <ProjectGuid>{6ACE10E7-BB87-479D-84EB-564B33FFFDDA}</ProjectGuid>
16    <OutputType>Library</OutputType>
17    <AppDesignerFolder>Properties</AppDesignerFolder>
18    <RootNamespace>PersistenceCodeFix.Vsix</RootNamespace>
19    <AssemblyName>PersistenceCodeFix.Vsix</AssemblyName>
20    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
21    <GeneratePkgDefFile>false</GeneratePkgDefFile>
22    <IncludeAssemblyInVSIXContainer>false</IncludeAssemblyInVSIXContainer>
23    <IncludeDebugSymbolsInVSIXContainer>false</IncludeDebugSymbolsInVSIXContainer>
24    <IncludeDebugSymbolsInLocalVSIXDeployment>false</IncludeDebugSymbolsInLocalVSIXDeployment>
25    <CopyBuildOutputToOutputDirectory>false</CopyBuildOutputToOutputDirectory>
26    <CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory>
27    <VSSDKTargetPlatformRegRootSuffix>Roslyn</VSSDKTargetPlatformRegRootSuffix>
28  </PropertyGroup>
29  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
30    <DebugSymbols>true</DebugSymbols>
31    <DebugType>full</DebugType>
32    <Optimize>false</Optimize>
33    <OutputPath>bin\Debug\</OutputPath>
34    <DefineConstants>DEBUG;TRACE</DefineConstants>
35    <ErrorReport>prompt</ErrorReport>
36    <WarningLevel>4</WarningLevel>
37  </PropertyGroup>
38  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
39    <DebugType>pdbonly</DebugType>
40    <Optimize>true</Optimize>
41    <OutputPath>bin\Release\</OutputPath>
42    <DefineConstants>TRACE</DefineConstants>
43    <ErrorReport>prompt</ErrorReport>
44    <WarningLevel>4</WarningLevel>
45  </PropertyGroup>
46  <PropertyGroup>
47    <StartAction>Program</StartAction>
48    <StartProgram>$(DevEnvDir)devenv.exe</StartProgram>
49    <StartArguments>/rootsuffix Roslyn</StartArguments>
50  </PropertyGroup>
51  <ItemGroup>
52    <None Include="source.extension.vsixmanifest">
53      <SubType>Designer</SubType>
54    </None>
55  </ItemGroup>
56  <ItemGroup>
57    <ProjectReference Include="..\PersistenceCodeFix\PersistenceCodeFix.csproj">
58      <Project>{5D74C4E0-52B2-4F01-B024-307EF52BAE35}</Project>
59      <Name>PersistenceCodeFix</Name>
60    </ProjectReference>
61  </ItemGroup>
62  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
63  <Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
64</Project>
Note: See TracBrowser for help on using the repository browser.