diff --git a/NugetPluginTest/NugetPluginTest.csproj b/NugetPluginTest/NugetPluginTest.csproj index 183f515..ec26794 100644 --- a/NugetPluginTest/NugetPluginTest.csproj +++ b/NugetPluginTest/NugetPluginTest.csproj @@ -1,7 +1,7 @@ - + - net6.0 + net6.0,net7 enable enable @@ -9,6 +9,7 @@ + diff --git a/NugetPluginTest/Test1.cs b/NugetPluginTest/Test1.cs index 6abe0b4..572ee8e 100644 --- a/NugetPluginTest/Test1.cs +++ b/NugetPluginTest/Test1.cs @@ -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.Collections.Generic; using System.IO.Compression; using System.Linq; +using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; @@ -27,5 +30,60 @@ namespace NugetPluginTest Assert.IsTrue(Directory.GetFiles(extractPath).Length > 0); } + + [TestMethod("获取系统运行框架版本")] + public void GetRuntimeInformation() { + var info = RuntimeInformation.FrameworkDescription; + Console.WriteLine(info); + } + + /// + /// 获取项目的Farmwork版本environment.version + /// + [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()); + } + } + + /// + /// 获取项目的Farmwork版本environment.version + /// + [TestMethod("获取项目运行框架版本 Environment")] + public void GetTargetFramework2() { + Console.WriteLine(Environment.Version.ToString()); + } + + /// + /// 获取项目的Farmwork版本 + /// + [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 + + } + } }