Free cookie consent management tool by TermsFeed Policy Generator

source: misc/tools/PersistenceCodeFix/PersistenceCodeFix/PersistenceCodeFix.Vsix/PersistenceCodeFix.Vsix.csproj @ 16469

Last change on this file since 16469 was 16469, checked in by gkronber, 5 years ago

#2520: Adapted VS code fixes:

  • using HeuristicLab.Persistence -> using HEAL.Fossil
  • Made missing StorableCtor a Warning
  • Ignore StorableCtor for structs and interfaces
File size: 3.6 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>15.0</MinimumVisualStudioVersion>
6    <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
7    <FileUpgradeFlags>
8    </FileUpgradeFlags>
9    <UpgradeBackupLocation>
10    </UpgradeBackupLocation>
11    <OldToolsVersion>14.0</OldToolsVersion>
12  </PropertyGroup>
13  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
14  <PropertyGroup>
15    <Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
16    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
17    <PlatformTarget>AnyCPU</PlatformTarget>
18    <SchemaVersion>2.0</SchemaVersion>
19    <ProjectTypeGuids>{82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
20    <ProjectGuid>{6ACE10E7-BB87-479D-84EB-564B33FFFDDA}</ProjectGuid>
21    <OutputType>Library</OutputType>
22    <AppDesignerFolder>Properties</AppDesignerFolder>
23    <RootNamespace>PersistenceCodeFix.Vsix</RootNamespace>
24    <AssemblyName>PersistenceCodeFix.Vsix</AssemblyName>
25    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
26    <GeneratePkgDefFile>false</GeneratePkgDefFile>
27    <IncludeAssemblyInVSIXContainer>false</IncludeAssemblyInVSIXContainer>
28    <IncludeDebugSymbolsInVSIXContainer>false</IncludeDebugSymbolsInVSIXContainer>
29    <IncludeDebugSymbolsInLocalVSIXDeployment>false</IncludeDebugSymbolsInLocalVSIXDeployment>
30    <CopyBuildOutputToOutputDirectory>false</CopyBuildOutputToOutputDirectory>
31    <CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory>
32    <VSSDKTargetPlatformRegRootSuffix>Roslyn</VSSDKTargetPlatformRegRootSuffix>
33  </PropertyGroup>
34  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
35    <DebugSymbols>true</DebugSymbols>
36    <DebugType>full</DebugType>
37    <Optimize>false</Optimize>
38    <OutputPath>bin\Debug\</OutputPath>
39    <DefineConstants>DEBUG;TRACE</DefineConstants>
40    <ErrorReport>prompt</ErrorReport>
41    <WarningLevel>4</WarningLevel>
42  </PropertyGroup>
43  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
44    <DebugType>pdbonly</DebugType>
45    <Optimize>true</Optimize>
46    <OutputPath>bin\Release\</OutputPath>
47    <DefineConstants>TRACE</DefineConstants>
48    <ErrorReport>prompt</ErrorReport>
49    <WarningLevel>4</WarningLevel>
50  </PropertyGroup>
51  <PropertyGroup>
52    <StartAction>Program</StartAction>
53    <StartProgram>$(DevEnvDir)devenv.exe</StartProgram>
54    <StartArguments>/rootsuffix Roslyn</StartArguments>
55  </PropertyGroup>
56  <ItemGroup>
57    <None Include="source.extension.vsixmanifest">
58      <SubType>Designer</SubType>
59    </None>
60  </ItemGroup>
61  <ItemGroup>
62    <ProjectReference Include="..\PersistenceCodeFix\PersistenceCodeFix.csproj">
63      <Project>{5D74C4E0-52B2-4F01-B024-307EF52BAE35}</Project>
64      <Name>PersistenceCodeFix</Name>
65    </ProjectReference>
66  </ItemGroup>
67  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
68  <Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
69</Project>
Note: See TracBrowser for help on using the repository browser.