nugetplugin测试

This commit is contained in:
Falcon 2024-11-20 10:56:44 +08:00
parent b581dce350
commit 66d22c5c08
2 changed files with 62 additions and 3 deletions

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net6.0</TargetFramework> <TargetFrameworks>net6.0,net7</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
@ -9,6 +9,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.Build" Version="17.3.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" /> <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8" /> <PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.8" /> <PackageReference Include="MSTest.TestFramework" Version="2.2.8" />

View File

@ -1,8 +1,11 @@
using Microsoft.VisualStudio.TestTools.UnitTesting; using Microsoft.Build.Evaluation;
using Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.Interfaces;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO.Compression; using System.IO.Compression;
using System.Linq; using System.Linq;
using System.Runtime.InteropServices;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
@ -27,5 +30,60 @@ namespace NugetPluginTest
Assert.IsTrue(Directory.GetFiles(extractPath).Length > 0); Assert.IsTrue(Directory.GetFiles(extractPath).Length > 0);
} }
[TestMethod("获取系统运行框架版本")]
public void GetRuntimeInformation() {
var info = RuntimeInformation.FrameworkDescription;
Console.WriteLine(info);
}
/// <summary>
/// 获取项目的Farmwork版本environment.version
/// </summary>
[TestMethod("获取项目运行框架版本")]
public void GetTargetFramework() {
try {
File.Copy("NugetPluginTest.dll","NugetPluginTest.dll1");
var project = new Project("NugetPluginTest.dll1");
string targetFramework = project.GetPropertyValue("TargetFramework");
}
catch(Exception ex) {
Console.WriteLine(ex.ToString());
}
}
/// <summary>
/// 获取项目的Farmwork版本environment.version
/// </summary>
[TestMethod("获取项目运行框架版本 Environment")]
public void GetTargetFramework2() {
Console.WriteLine(Environment.Version.ToString());
}
/// <summary>
/// 获取项目的Farmwork版本
/// </summary>
[TestMethod("获取项目运行框架版本,条件编译")]
public void GetTargetFramework1() {
#if NET6
Console.WriteLine("NET6");
#endif
#if NET6_0
Console.WriteLine("NET6_0");
#endif
#if NET5_0_OR_GREATER
Console.WriteLine("NET5_0_OR_GREATER");
#endif
#if NET6_0_OR_GREATER
Console.WriteLine("NET6_0_OR_GREATER");
#endif
#if NETCOREAPP
Console.WriteLine("NETCOREAPP");
#endif
}
} }
} }