Skip to content

Commit 3f5981c

Browse files
Updates
1 parent f1a0eb7 commit 3f5981c

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<HighEntropyVa>true</HighEntropyVa>
2121
<CheckForOverflowUnderflow Condition=" '$(Configuration)' == 'Debug' ">true</CheckForOverflowUnderflow>
2222
<NetFxTFM>net481</NetFxTFM>
23-
<NetCoreTFM>net8</NetCoreTFM>
23+
<NetCoreTFM>net8.0</NetCoreTFM>
2424
</PropertyGroup>
2525

2626
<ItemGroup>

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.100",
3+
"version": "8.0.200",
44
"rollForward": "latestPatch"
55
}
66
}

src/LibraryManager.Build/RestoreTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
namespace Microsoft.Web.LibraryManager.Build
1717
{
1818
public class RestoreTask
19-
#if NET481
19+
#if NETFRAMEWORK
2020
: AppDomainIsolatedTask
2121
#else
2222
: Task

src/libman/libman.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<TargetFramework>$(NetCoreTFM)</TargetFramework>
66
<RootNamespace>Microsoft.Web.LibraryManager.Tools</RootNamespace>
77
<PackAsTool>true</PackAsTool>
8+
<PackAsToolShimRuntimeIdentifiers>win-x64;win-x86;osx-x64</PackAsToolShimRuntimeIdentifiers>
89
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
910
<PackageId>Microsoft.Web.LibraryManager.Cli</PackageId>
1011
<Description>Command line tool for Library Manager</Description>

test/LibraryManager.Test/Configuration/SettingsTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public TestSettings(string configFilePath)
2929
[ClassInitialize]
3030
public static void Setup(TestContext context)
3131
{
32-
#if NET481
32+
#if NETFRAMEWORK
3333
TestFilePath = Path.Combine(context.DeploymentDirectory, "SettingsTest", "libman.config.json");
3434
#else
3535
TestFilePath = Environment.ExpandEnvironmentVariables(@"%localappdata%\Microsoft\Library\libman.config.json");
@@ -40,7 +40,7 @@ public static void Setup(TestContext context)
4040
[ClassCleanup]
4141
public static void Cleanup()
4242
{
43-
#if !NET481
43+
#if !NETFRAMEWORK
4444
// cleanup when we're leaving files behind not under the test DeploymentDirectory
4545
Directory.Delete(Path.GetDirectoryName(TestFilePath), true);
4646
#endif

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "2.1",
3+
"version": "8.0",
44
"publicRefSpec": [
55
"^refs/tags/v\\d+\\.\\d+" // we release tags starting with vN.N
66
]

0 commit comments

Comments
 (0)