/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/IntegrationTest/TestSetup/Microsoft.VisualStudio.IntegrationTest.Setup.csproj
37 строк
2 KB
Jan Jones
Use SQLite3MC (#84140)
24 июн 2026, 14:20
Не верифицирован
24 июн 2026, 14:20
0288255
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. --> <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Library</OutputType> <RootNamespace>Microsoft.VisualStudio.IntegrationTest.Setup</RootNamespace> <TargetFramework>net472</TargetFramework> <IsShipping>false</IsShipping> <!-- VSIX --> <UseCodebase>true</UseCodebase> <GeneratePkgDefFile>false</GeneratePkgDefFile> <IncludeAssemblyInVSIXContainer>true</IncludeAssemblyInVSIXContainer> <IncludeDebugSymbolsInVSIXContainer>false</IncludeDebugSymbolsInVSIXContainer> <IncludeDebugSymbolsInLocalVSIXDeployment>true</IncludeDebugSymbolsInLocalVSIXDeployment> <DeployExtension>true</DeployExtension> </PropertyGroup> <ItemGroup> <None Include="source.extension.vsixmanifest"> <SubType>Designer</SubType> </None> </ItemGroup> <ItemGroup> <ProjectReference Include="..\..\..\ExpressionEvaluator\Package\ExpressionEvaluatorPackage.csproj" Name="ExpressionEvaluatorPackage" Private="false" /> <ProjectReference Include="..\..\..\Workspaces\Core\Portable\Microsoft.CodeAnalysis.Workspaces.csproj" Private="false" /> <ProjectReference Include="..\..\Setup\Roslyn.VisualStudio.Setup.csproj" Name="VisualStudioSetup" Private="false" /> </ItemGroup> <ItemGroup> <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices.New.IntegrationTests" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.Extensibility.Testing.Xunit.IntegrationTests" /> </ItemGroup> <ItemGroup> <!-- Prevent downstream projects from trying to place the Sqlite assemblies from this package --> <PackageReference Include="SQLite3MC.PCLRaw.lib" ExcludeAssets="all" PrivateAssets="all" /> </ItemGroup> </Project>