Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/tools/PersistenceCodeFix/PersistenceCodeFix/PersistenceCodeFix/PersistenceCodeFix.csproj @ 14989

Last change on this file since 14989 was 14989, checked in by jkarder, 7 years ago

#2520: worked on persistence code fix

  • added SequentialFixAllProvider
File size: 8.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  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
5  <PropertyGroup>
6    <MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
7    <Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
8    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
9    <PlatformTarget>AnyCPU</PlatformTarget>
10    <ProjectGuid>{5D74C4E0-52B2-4F01-B024-307EF52BAE35}</ProjectGuid>
11    <OutputType>Library</OutputType>
12    <AppDesignerFolder>Properties</AppDesignerFolder>
13    <RootNamespace>PersistenceCodeFix</RootNamespace>
14    <AssemblyName>PersistenceCodeFix</AssemblyName>
15    <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
16    <TargetFrameworkProfile>Profile7</TargetFrameworkProfile>
17    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
18  </PropertyGroup>
19  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
20    <DebugSymbols>true</DebugSymbols>
21    <DebugType>full</DebugType>
22    <Optimize>false</Optimize>
23    <OutputPath>bin\Debug\</OutputPath>
24    <DefineConstants>DEBUG;TRACE</DefineConstants>
25    <ErrorReport>prompt</ErrorReport>
26    <WarningLevel>4</WarningLevel>
27  </PropertyGroup>
28  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
29    <DebugType>pdbonly</DebugType>
30    <Optimize>true</Optimize>
31    <OutputPath>bin\Release\</OutputPath>
32    <DefineConstants>TRACE</DefineConstants>
33    <ErrorReport>prompt</ErrorReport>
34    <WarningLevel>4</WarningLevel>
35  </PropertyGroup>
36  <ItemGroup>
37    <Compile Include="Analyzers\DiagnosticIds.cs" />
38    <Compile Include="Analyzers\MissingStorableConstructor\MissingStorableConstructorAnalyzer.cs" />
39    <Compile Include="Analyzers\MissingStorableConstructor\MissingStorableConstructorFix.cs" />
40    <Compile Include="Analyzers\ObsoleteStorableClass\ObsoleteStorableClassAnalyzer.cs" />
41    <Compile Include="Analyzers\ObsoleteStorableClass\ObsoleteStorableClassFix.cs" />
42    <Compile Include="Analyzers\MissingStorableType\MissingStorableTypeAnalyzer.cs" />
43    <Compile Include="Analyzers\MissingStorableType\MissingStorableTypeFix.cs" />
44    <Compile Include="IDocumentCodeFixProvider.cs" />
45    <Compile Include="Properties\AssemblyInfo.cs" />
46    <Compile Include="Resources.Designer.cs">
47      <AutoGen>True</AutoGen>
48      <DesignTime>True</DesignTime>
49      <DependentUpon>Resources.resx</DependentUpon>
50    </Compile>
51    <Compile Include="SequentialFixAllProvider.cs" />
52  </ItemGroup>
53  <ItemGroup>
54    <EmbeddedResource Include="Resources.resx">
55      <Generator>ResXFileCodeGenerator</Generator>
56      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
57    </EmbeddedResource>
58  </ItemGroup>
59  <ItemGroup>
60    <None Include="Diagnostic.nuspec">
61      <SubType>Designer</SubType>
62      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
63    </None>
64    <None Include="packages.config" />
65    <None Include="tools\install.ps1">
66      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
67    </None>
68    <None Include="tools\uninstall.ps1">
69      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
70    </None>
71    <None Include="ReadMe.txt" />
72  </ItemGroup>
73  <ItemGroup>
74    <Analyzer Include="..\..\packages\Microsoft.CodeAnalysis.Analyzers.1.1.0\analyzers\dotnet\cs\Microsoft.CodeAnalysis.Analyzers.dll" />
75    <Analyzer Include="..\..\packages\Microsoft.CodeAnalysis.Analyzers.1.1.0\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.Analyzers.dll" />
76  </ItemGroup>
77  <ItemGroup>
78    <Reference Include="Microsoft.CodeAnalysis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
79      <HintPath>..\..\packages\Microsoft.CodeAnalysis.Common.1.0.1\lib\portable-net45+win8\Microsoft.CodeAnalysis.dll</HintPath>
80      <Private>False</Private>
81    </Reference>
82    <Reference Include="Microsoft.CodeAnalysis.CSharp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
83      <HintPath>..\..\packages\Microsoft.CodeAnalysis.CSharp.1.0.1\lib\portable-net45+win8\Microsoft.CodeAnalysis.CSharp.dll</HintPath>
84      <Private>False</Private>
85    </Reference>
86    <Reference Include="Microsoft.CodeAnalysis.CSharp.Workspaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
87      <HintPath>..\..\packages\Microsoft.CodeAnalysis.CSharp.Workspaces.1.0.1\lib\portable-net45+win8\Microsoft.CodeAnalysis.CSharp.Workspaces.dll</HintPath>
88      <Private>False</Private>
89    </Reference>
90    <Reference Include="Microsoft.CodeAnalysis.Workspaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
91      <HintPath>..\..\packages\Microsoft.CodeAnalysis.Workspaces.Common.1.0.1\lib\portable-net45+win8\Microsoft.CodeAnalysis.Workspaces.dll</HintPath>
92      <Private>False</Private>
93    </Reference>
94    <Reference Include="System.Collections.Immutable, Version=1.1.36.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
95      <HintPath>..\..\packages\System.Collections.Immutable.1.1.36\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll</HintPath>
96      <Private>False</Private>
97    </Reference>
98    <Reference Include="System.Composition.AttributedModel, Version=1.0.27.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
99      <HintPath>..\..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.AttributedModel.dll</HintPath>
100      <Private>False</Private>
101    </Reference>
102    <Reference Include="System.Composition.Convention, Version=1.0.27.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
103      <HintPath>..\..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Convention.dll</HintPath>
104      <Private>False</Private>
105    </Reference>
106    <Reference Include="System.Composition.Hosting, Version=1.0.27.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
107      <HintPath>..\..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Hosting.dll</HintPath>
108      <Private>False</Private>
109    </Reference>
110    <Reference Include="System.Composition.Runtime, Version=1.0.27.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
111      <HintPath>..\..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Runtime.dll</HintPath>
112      <Private>False</Private>
113    </Reference>
114    <Reference Include="System.Composition.TypedParts, Version=1.0.27.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
115      <HintPath>..\..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.TypedParts.dll</HintPath>
116      <Private>False</Private>
117    </Reference>
118    <Reference Include="System.Reflection.Metadata, Version=1.0.21.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
119      <HintPath>..\..\packages\System.Reflection.Metadata.1.0.21\lib\portable-net45+win8\System.Reflection.Metadata.dll</HintPath>
120      <Private>False</Private>
121    </Reference>
122  </ItemGroup>
123  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
124  <Target Name="AfterBuild">
125    <GetAssemblyIdentity AssemblyFiles="$(OutDir)\$(AssemblyName).dll">
126      <Output TaskParameter="Assemblies" ItemName="AnalyzerAssemblyInfo" />
127    </GetAssemblyIdentity>
128    <Exec Command="&quot;$(SolutionDir)packages\NuGet.CommandLine.2.8.5\tools\NuGet.exe&quot; pack Diagnostic.nuspec -NoPackageAnalysis -Version %(AnalyzerAssemblyInfo.Version) -OutputDirectory ." WorkingDirectory="$(OutDir)" LogStandardErrorAsError="true" ConsoleToMSBuild="true">
129      <Output TaskParameter="ConsoleOutput" PropertyName="OutputOfExec" />
130    </Exec>
131  </Target>
132</Project>
Note: See TracBrowser for help on using the repository browser.