Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/tools/PersistenceCodeFix/PersistenceCodeFix/PersistenceCodeFix/PersistenceCodeFix.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: 7.8 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="CodeFixProvider.cs" />
38    <Compile Include="DiagnosticAnalyzer.cs" />
39    <Compile Include="Properties\AssemblyInfo.cs" />
40    <Compile Include="Resources.Designer.cs">
41      <AutoGen>True</AutoGen>
42      <DesignTime>True</DesignTime>
43      <DependentUpon>Resources.resx</DependentUpon>
44    </Compile>
45  </ItemGroup>
46  <ItemGroup>
47    <EmbeddedResource Include="Resources.resx">
48      <Generator>ResXFileCodeGenerator</Generator>
49      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
50    </EmbeddedResource>
51  </ItemGroup>
52  <ItemGroup>
53    <None Include="Diagnostic.nuspec">
54      <SubType>Designer</SubType>
55      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
56    </None>
57    <None Include="packages.config" />
58    <None Include="tools\install.ps1">
59      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
60    </None>
61    <None Include="tools\uninstall.ps1">
62      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
63    </None>
64    <None Include="ReadMe.txt" />
65  </ItemGroup>
66  <ItemGroup>
67    <Analyzer Include="..\..\packages\Microsoft.CodeAnalysis.Analyzers.1.1.0\analyzers\dotnet\cs\Microsoft.CodeAnalysis.Analyzers.dll" />
68    <Analyzer Include="..\..\packages\Microsoft.CodeAnalysis.Analyzers.1.1.0\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.Analyzers.dll" />
69  </ItemGroup>
70  <ItemGroup>
71    <Reference Include="Microsoft.CodeAnalysis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
72      <HintPath>..\..\packages\Microsoft.CodeAnalysis.Common.1.0.1\lib\portable-net45+win8\Microsoft.CodeAnalysis.dll</HintPath>
73      <Private>False</Private>
74    </Reference>
75    <Reference Include="Microsoft.CodeAnalysis.CSharp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
76      <HintPath>..\..\packages\Microsoft.CodeAnalysis.CSharp.1.0.1\lib\portable-net45+win8\Microsoft.CodeAnalysis.CSharp.dll</HintPath>
77      <Private>False</Private>
78    </Reference>
79    <Reference Include="Microsoft.CodeAnalysis.CSharp.Workspaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
80      <HintPath>..\..\packages\Microsoft.CodeAnalysis.CSharp.Workspaces.1.0.1\lib\portable-net45+win8\Microsoft.CodeAnalysis.CSharp.Workspaces.dll</HintPath>
81      <Private>False</Private>
82    </Reference>
83    <Reference Include="Microsoft.CodeAnalysis.Workspaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
84      <HintPath>..\..\packages\Microsoft.CodeAnalysis.Workspaces.Common.1.0.1\lib\portable-net45+win8\Microsoft.CodeAnalysis.Workspaces.dll</HintPath>
85      <Private>False</Private>
86    </Reference>
87    <Reference Include="System.Collections.Immutable, Version=1.1.36.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
88      <HintPath>..\..\packages\System.Collections.Immutable.1.1.36\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll</HintPath>
89      <Private>False</Private>
90    </Reference>
91    <Reference Include="System.Composition.AttributedModel, Version=1.0.27.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
92      <HintPath>..\..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.AttributedModel.dll</HintPath>
93      <Private>False</Private>
94    </Reference>
95    <Reference Include="System.Composition.Convention, Version=1.0.27.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
96      <HintPath>..\..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Convention.dll</HintPath>
97      <Private>False</Private>
98    </Reference>
99    <Reference Include="System.Composition.Hosting, Version=1.0.27.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
100      <HintPath>..\..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Hosting.dll</HintPath>
101      <Private>False</Private>
102    </Reference>
103    <Reference Include="System.Composition.Runtime, Version=1.0.27.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
104      <HintPath>..\..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Runtime.dll</HintPath>
105      <Private>False</Private>
106    </Reference>
107    <Reference Include="System.Composition.TypedParts, Version=1.0.27.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
108      <HintPath>..\..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.TypedParts.dll</HintPath>
109      <Private>False</Private>
110    </Reference>
111    <Reference Include="System.Reflection.Metadata, Version=1.0.21.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
112      <HintPath>..\..\packages\System.Reflection.Metadata.1.0.21\lib\portable-net45+win8\System.Reflection.Metadata.dll</HintPath>
113      <Private>False</Private>
114    </Reference>
115  </ItemGroup>
116  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
117  <Target Name="AfterBuild">
118    <GetAssemblyIdentity AssemblyFiles="$(OutDir)\$(AssemblyName).dll">
119      <Output TaskParameter="Assemblies" ItemName="AnalyzerAssemblyInfo" />
120    </GetAssemblyIdentity>
121    <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">
122      <Output TaskParameter="ConsoleOutput" PropertyName="OutputOfExec" />
123    </Exec>
124  </Target>
125</Project>
Note: See TracBrowser for help on using the repository browser.