Additional target net472

This commit is contained in:
Sergey Chebotar 2023-02-09 10:05:50 +03:00
parent 2c0dee774c
commit 6fe49f6ad1
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,6 @@ using System.Runtime.Versioning;
[assembly: AssemblyCopyright("Copyright © 2021-2023")] [assembly: AssemblyCopyright("Copyright © 2021-2023")]
[assembly: AssemblyTrademark("")] [assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")] [assembly: AssemblyCulture("")]
[assembly: SupportedOSPlatform("windows")]
// Setting ComVisible to false makes the types in this assembly not visible // Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from // to COM components. If you need to access a type in this assembly from

View File

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework> <TargetFrameworks>net472;net6.0-windows</TargetFrameworks>
<OutputType>Library</OutputType> <OutputType>Library</OutputType>
<RootNamespace>RhSolutions.AddIn</RootNamespace> <RootNamespace>RhSolutions.AddIn</RootNamespace>
<AssemblyName>RhSolutions.AddIn</AssemblyName> <AssemblyName>RhSolutions.AddIn</AssemblyName>
@ -17,5 +17,6 @@
<PackageReference Include="ExcelDna.Interop" Version="15.0.0" /> <PackageReference Include="ExcelDna.Interop" Version="15.0.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> <PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" /> <PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup> </ItemGroup>
</Project> </Project>