/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/IntegrationTest/New.IntegrationTests/Workspace/WorkspacesDesktop.cs
26 строк
781 B
Cyrus Najmabadi
Update
09 фев 2024, 23:58
09 фев 2024, 23:58
ec9522b
Код
Авторство
О чём код?
// 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. using System.Threading.Tasks; using Microsoft.CodeAnalysis.Test.Utilities; using Microsoft.VisualStudio.IntegrationTest.Utilities; using Xunit; namespace Roslyn.VisualStudio.NewIntegrationTests.Workspaces; [Trait(Traits.Feature, Traits.Features.Workspace)] public class WorkspacesDesktop : WorkspaceBase { public WorkspacesDesktop() : base(WellKnownProjectTemplates.ClassLibrary) { } [IdeFact] public override async Task MetadataReference() { await InitializeWithDefaultSolution(); await base.MetadataReference(); } }