Microsoft.VisualStudio.LanguageServices.Xaml.csproj 2.7 KB
Newer Older
M
Marco Goertz 已提交
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 Sdk="Microsoft.NET.Sdk">
M
Marco Goertz 已提交
4 5 6 7
  <PropertyGroup>
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.VisualStudio.LanguageServices.Xaml</RootNamespace>
    <DeployExtension>false</DeployExtension>
T
Tomas Matousek 已提交
8
    <TargetFramework>net472</TargetFramework>
M
Marco Goertz 已提交
9 10 11
    <ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
  </PropertyGroup>
  <ItemGroup Label="Project References">
J
Jared Parsons 已提交
12 13 14 15 16 17
    <ProjectReference Include="..\..\..\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj" />
    <ProjectReference Include="..\..\..\EditorFeatures\Core\Microsoft.CodeAnalysis.EditorFeatures.csproj" />
    <ProjectReference Include="..\..\..\Workspaces\Core\Portable\Microsoft.CodeAnalysis.Workspaces.csproj" />
    <ProjectReference Include="..\..\..\Features\Core\Portable\Microsoft.CodeAnalysis.Features.csproj" />
    <ProjectReference Include="..\..\..\EditorFeatures\Text\Microsoft.CodeAnalysis.EditorFeatures.Text.csproj" />
    <ProjectReference Include="..\..\Core\Def\Microsoft.VisualStudio.LanguageServices.csproj" />
M
Marco Goertz 已提交
18 19
  </ItemGroup>
  <ItemGroup>
20
    <InternalsVisibleTo Include="Microsoft.VisualStudio.DesignTools.XamlLanguageService" Key="$(VisualStudioKey)" WorkItem="https://github.com/dotnet/roslyn/issues/35069" />
M
Marco Goertz 已提交
21 22
  </ItemGroup>
  <ItemGroup>
23
    <Compile Update="Resources.Designer.cs">
M
Marco Goertz 已提交
24 25 26 27 28 29 30
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>Resources.resx</DependentUpon>
    </Compile>
  </ItemGroup>
  <ItemGroup>
    <Reference Include="System" />
31 32 33
    <PackageReference Include="Microsoft.VisualStudio.Editor" Version="$(MicrosoftVisualStudioEditorVersion)" />
    <PackageReference Include="Microsoft.VisualStudio.Shell.15.0" Version="$(MicrosoftVisualStudioShell150Version)" />
    <PackageReference Include="Microsoft.VisualStudio.ComponentModelHost" Version="$(MicrosoftVisualStudioComponentModelHostVersion)" />
I
Ivan Basov 已提交
34
    <PackageReference Include="Microsoft.VisualStudio.Threading" Version="$(MicrosoftVisualStudioThreadingVersion)" />
35
    <PackageReference Include="StreamJsonRpc" Version="$(StreamJsonRpcVersion)" />
36
    <PackageReference Include="Newtonsoft.Json" Version="$(NewtonsoftJsonVersion)" />
I
Ivan Basov 已提交
37
    <PackageReference Include="StreamJsonRpc" Version="$(StreamJsonRpcVersion)" />
M
Marco Goertz 已提交
38 39
  </ItemGroup>
  <ItemGroup>
40
    <EmbeddedResource Update="Resources.resx">
M
Marco Goertz 已提交
41 42 43 44
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
    </EmbeddedResource>
  </ItemGroup>
45
</Project>