34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
using System.IO;
|
|
using Microsoft.DotNet.Tools.Test.Utilities;
|
|
using Xunit;
|
|
using Microsoft.DotNet.TestFramework;
|
|
|
|
namespace Microsoft.DotNet.Tools.Publish.Tests
|
|
{
|
|
public class PublishStandaloneTests : TestBase
|
|
{
|
|
[Fact]
|
|
public void StandaloneAppDoesNotHaveRuntimeConfigDevJsonFile()
|
|
{
|
|
var testInstance = TestAssetsManager.CreateTestInstance("PortableTests")
|
|
.WithLockFiles();
|
|
|
|
var publishDir = Publish(testInstance);
|
|
|
|
publishDir.Should().NotHaveFile("StandaloneApp.runtimeconfig.dev.json");
|
|
}
|
|
|
|
private DirectoryInfo Publish(TestInstance testInstance)
|
|
{
|
|
var publishCommand = new PublishCommand(Path.Combine(testInstance.TestRoot, "StandaloneApp"));
|
|
var publishResult = publishCommand.Execute();
|
|
|
|
publishResult.Should().Pass();
|
|
|
|
return publishCommand.GetOutputDirectory(portable: false);
|
|
}
|
|
}
|
|
}
|