Add other tooling assemblies to VSIX
This commit is contained in:
parent
a386444b64
commit
39c5aee9a1
|
|
@ -119,6 +119,18 @@
|
||||||
<IncludeOutputGroupsInVSIXLocalOnly>
|
<IncludeOutputGroupsInVSIXLocalOnly>
|
||||||
</IncludeOutputGroupsInVSIXLocalOnly>
|
</IncludeOutputGroupsInVSIXLocalOnly>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
|
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.Blazor.Razor.Extensions\Microsoft.AspNetCore.Blazor.Razor.Extensions.csproj">
|
||||||
|
<Name>Microsoft.AspNetCore.Blazor.Razor.Extensions</Name>
|
||||||
|
<Private>False</Private>
|
||||||
|
<IncludeOutputGroupsInVSIX></IncludeOutputGroupsInVSIX>
|
||||||
|
<IncludeOutputGroupsInVSIXLocalOnly></IncludeOutputGroupsInVSIXLocalOnly>
|
||||||
|
</ProjectReference>
|
||||||
|
<Content Include="..\..\src\Microsoft.AspNetCore.Blazor.Razor.Extensions\bin\$(Configuration)\net461\Microsoft.AspNetCore.Blazor.Razor.Extensions.dll">
|
||||||
|
<Link>Microsoft.AspNetCore.Blazor.Razor.Extensions.dll</Link>
|
||||||
|
<IncludeInVSIX>true</IncludeInVSIX>
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
<Visible>false</Visible>
|
||||||
|
</Content>
|
||||||
<ProjectReference Include="..\Microsoft.VisualStudio.LanguageServices.Blazor\Microsoft.VisualStudio.LanguageServices.Blazor.csproj">
|
<ProjectReference Include="..\Microsoft.VisualStudio.LanguageServices.Blazor\Microsoft.VisualStudio.LanguageServices.Blazor.csproj">
|
||||||
<Project>{b9f7f502-6dd2-4e77-8fd1-cbd76f695b26}</Project>
|
<Project>{b9f7f502-6dd2-4e77-8fd1-cbd76f695b26}</Project>
|
||||||
<Name>Microsoft.VisualStudio.LanguageServices.Blazor</Name>
|
<Name>Microsoft.VisualStudio.LanguageServices.Blazor</Name>
|
||||||
|
|
@ -134,6 +146,17 @@
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
<Visible>false</Visible>
|
<Visible>false</Visible>
|
||||||
</Content>
|
</Content>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
This is built as a P2P by Microsoft.VisualStudio.LanguageServices.Blazor. This is required, adding the P2P
|
||||||
|
to this project will cause a NU1201 error that doesn't have a workaround.
|
||||||
|
-->
|
||||||
|
<Content Include="..\..\src\anglesharp\AngleSharpBuilder\dist\Microsoft.AspNetCore.Blazor.AngleSharp.dll">
|
||||||
|
<Link>Microsoft.AspNetCore.Blazor.AngleSharp.dll</Link>
|
||||||
|
<IncludeInVSIX>true</IncludeInVSIX>
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
<Visible>false</Visible>
|
||||||
|
</Content>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,20 @@ using Microsoft.VisualStudio.Shell;
|
||||||
//
|
//
|
||||||
// The versions here need to match what the build is producing. If you change the version numbers
|
// The versions here need to match what the build is producing. If you change the version numbers
|
||||||
// for the Blazor assemblies, this needs to change as well.
|
// for the Blazor assemblies, this needs to change as well.
|
||||||
|
[assembly: ProvideBindingRedirection(
|
||||||
|
AssemblyName = "Microsoft.AspNetCore.Blazor.AngleSharp",
|
||||||
|
GenerateCodeBase = true,
|
||||||
|
PublicKeyToken = "",
|
||||||
|
OldVersionLowerBound = "0.0.0.0",
|
||||||
|
OldVersionUpperBound = "0.9.9.0",
|
||||||
|
NewVersion = "0.9.9.0")]
|
||||||
|
[assembly: ProvideBindingRedirection(
|
||||||
|
AssemblyName = "Microsoft.AspNetCore.Blazor.Razor.Extensions",
|
||||||
|
GenerateCodeBase = true,
|
||||||
|
PublicKeyToken = "",
|
||||||
|
OldVersionLowerBound = "0.0.0.0",
|
||||||
|
OldVersionUpperBound = "0.0.5.0",
|
||||||
|
NewVersion = "0.0.5.0")]
|
||||||
[assembly: ProvideBindingRedirection(
|
[assembly: ProvideBindingRedirection(
|
||||||
AssemblyName = "Microsoft.VisualStudio.LanguageServices.Blazor",
|
AssemblyName = "Microsoft.VisualStudio.LanguageServices.Blazor",
|
||||||
GenerateCodeBase = true,
|
GenerateCodeBase = true,
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,8 @@
|
||||||
<Assets>
|
<Assets>
|
||||||
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
|
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
|
||||||
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="File" Path="Microsoft.VisualStudio.LanguageServices.Blazor.dll" />
|
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="File" Path="Microsoft.VisualStudio.LanguageServices.Blazor.dll" />
|
||||||
|
<Asset Type="Microsoft.VisualStudio.Assembly" d:Source="File" Path="Microsoft.AspNetCore.Blazor.AngleSharp.dll" />
|
||||||
|
<Asset Type="Microsoft.VisualStudio.Assembly" d:Source="File" Path="Microsoft.AspNetCore.Blazor.Razor.Extensions.dll" />
|
||||||
<Asset Type="Microsoft.VisualStudio.Assembly" d:Source="File" Path="Microsoft.VisualStudio.LanguageServices.Blazor.dll" />
|
<Asset Type="Microsoft.VisualStudio.Assembly" d:Source="File" Path="Microsoft.VisualStudio.LanguageServices.Blazor.dll" />
|
||||||
<Asset Type="Microsoft.VisualStudio.VsPackage" Path="Templates.pkgdef" />
|
<Asset Type="Microsoft.VisualStudio.VsPackage" Path="Templates.pkgdef" />
|
||||||
</Assets>
|
</Assets>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue