source: trunk/tools/vslol/VsLol.csproj @ 2118

Last change on this file since 2118 was 2118, checked in by sam, 10 years ago

vslol: add the skeleton for a real LolFx syntax highlighter.

File size: 6.9 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{58922993-9830-4A40-B462-0326342F69ED}</ProjectGuid>
8    <ProjectTypeGuids>{82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>Lol.VisualStudio.Plugin</RootNamespace>
12    <AssemblyName>Lol.VisualStudio.VsLol</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <PublishUrl>publish\</PublishUrl>
15    <Install>true</Install>
16    <InstallFrom>Disk</InstallFrom>
17    <UpdateEnabled>false</UpdateEnabled>
18    <UpdateMode>Foreground</UpdateMode>
19    <UpdateInterval>7</UpdateInterval>
20    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
21    <UpdatePeriodically>false</UpdatePeriodically>
22    <UpdateRequired>false</UpdateRequired>
23    <MapFileExtensions>true</MapFileExtensions>
24    <ApplicationRevision>0</ApplicationRevision>
25    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
26    <IsWebBootstrapper>false</IsWebBootstrapper>
27    <UseApplicationTrust>false</UseApplicationTrust>
28    <BootstrapperEnabled>true</BootstrapperEnabled>
29  </PropertyGroup>
30  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
31    <DebugSymbols>true</DebugSymbols>
32    <DebugType>full</DebugType>
33    <Optimize>false</Optimize>
34    <OutputPath>bin\Debug\</OutputPath>
35    <DefineConstants>DEBUG;TRACE</DefineConstants>
36    <ErrorReport>prompt</ErrorReport>
37    <WarningLevel>4</WarningLevel>
38    <RunCodeAnalysis>true</RunCodeAnalysis>
39    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
40  </PropertyGroup>
41  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
42    <DebugType>pdbonly</DebugType>
43    <Optimize>true</Optimize>
44    <OutputPath>bin\Release\</OutputPath>
45    <DefineConstants>TRACE</DefineConstants>
46    <ErrorReport>prompt</ErrorReport>
47    <WarningLevel>4</WarningLevel>
48    <RunCodeAnalysis>true</RunCodeAnalysis>
49    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
50  </PropertyGroup>
51  <ItemGroup>
52    <Reference Include="envdte, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
53      <EmbedInteropTypes>True</EmbedInteropTypes>
54      <HintPath>..\..\..\..\Program Files (x86)\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\envdte.dll</HintPath>
55    </Reference>
56    <Reference Include="Microsoft.CSharp" />
57    <Reference Include="Microsoft.VisualStudio.OLE.Interop" />
58    <Reference Include="Microsoft.VisualStudio.Package.LanguageService.10.0, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
59    <Reference Include="Microsoft.VisualStudio.Shell.Interop" />
60    <Reference Include="Microsoft.VisualStudio.Shell.Interop.8.0" />
61    <Reference Include="Microsoft.VisualStudio.Shell.Interop.9.0" />
62    <Reference Include="Microsoft.VisualStudio.Shell.Interop.10.0" />
63    <Reference Include="Microsoft.VisualStudio.TextManager.Interop" />
64    <Reference Include="Microsoft.VisualStudio.Shell.10.0">
65      <Private>false</Private>
66    </Reference>
67    <Reference Include="Microsoft.VisualStudio.Shell.Immutable.10.0" />
68    <Reference Include="Microsoft.VisualStudio.TextManager.Interop.8.0, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
69    <Reference Include="System" />
70    <Reference Include="System.Core" />
71    <Reference Include="System.Data" />
72    <Reference Include="System.Design" />
73    <Reference Include="System.Drawing" />
74    <Reference Include="System.Windows.Forms" />
75    <Reference Include="System.Xml" />
76  </ItemGroup>
77  <ItemGroup>
78    <Compile Include="LolFxLanguageService.cs" />
79    <Compile Include="MenuGenerateCompilers.cs" />
80    <Compile Include="GlobalSuppressions.cs" />
81    <Compile Include="VsLol.Designer.cs">
82      <AutoGen>True</AutoGen>
83      <DesignTime>True</DesignTime>
84      <DependentUpon>VsLol.resx</DependentUpon>
85    </Compile>
86    <Compile Include="VsLol.cs" />
87    <Compile Include="AssemblyInfo.cs" />
88  </ItemGroup>
89  <ItemGroup>
90    <VSCTCompile Include="VsLol.vsct">
91      <ResourceName>1000</ResourceName>
92      <SubType>Designer</SubType>
93    </VSCTCompile>
94  </ItemGroup>
95  <ItemGroup>
96    <EmbeddedResource Include="VsLol.resx">
97      <Generator>ResXFileCodeGenerator</Generator>
98      <LastGenOutput>VsLol.Designer.cs</LastGenOutput>
99      <SubType>Designer</SubType>
100      <MergeWithCTO>true</MergeWithCTO>
101    </EmbeddedResource>
102  </ItemGroup>
103  <ItemGroup>
104    <Content Include="..\..\COPYING">
105      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
106      <IncludeInVSIX>true</IncludeInVSIX>
107    </Content>
108    <None Include="source.extension.vsixmanifest">
109      <SubType>Designer</SubType>
110    </None>
111  </ItemGroup>
112  <ItemGroup>
113    <BootstrapperPackage Include=".NETFramework,Version=v4.0">
114      <Visible>False</Visible>
115      <ProductName>Microsoft .NET Framework 4 %28x86 and x64%29</ProductName>
116      <Install>true</Install>
117    </BootstrapperPackage>
118    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
119      <Visible>False</Visible>
120      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
121      <Install>false</Install>
122    </BootstrapperPackage>
123    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
124      <Visible>False</Visible>
125      <ProductName>.NET Framework 3.5 SP1</ProductName>
126      <Install>false</Install>
127    </BootstrapperPackage>
128    <BootstrapperPackage Include="Microsoft.VisualBasic.PowerPacks.10.0">
129      <Visible>False</Visible>
130      <ProductName>Microsoft Visual Basic PowerPacks 10.0</ProductName>
131      <Install>true</Install>
132    </BootstrapperPackage>
133    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
134      <Visible>False</Visible>
135      <ProductName>Windows Installer 3.1</ProductName>
136      <Install>true</Install>
137    </BootstrapperPackage>
138  </ItemGroup>
139  <ItemGroup>
140    <Content Include="gear.bmp" />
141  </ItemGroup>
142  <PropertyGroup>
143    <!--
144    To specify a different registry root to register your package, uncomment the TargetRegistryRoot
145    tag and specify a registry root in it.
146    <TargetRegistryRoot></TargetRegistryRoot>
147    -->
148    <RegisterOutputPackage>true</RegisterOutputPackage>
149    <RegisterWithCodebase>true</RegisterWithCodebase>
150  </PropertyGroup>
151  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
152  <Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\VSSDK\Microsoft.VsSDK.targets" />
153  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
154       Other similar extension points exist, see Microsoft.Common.targets.
155  <Target Name="BeforeBuild">
156  </Target>
157  <Target Name="AfterBuild">
158  </Target>
159  -->
160</Project>
Note: See TracBrowser for help on using the repository browser.