Drop support for net35 and net40 in favor of net461

This commit is contained in:
Yoshi Askharoun
2023-05-04 00:23:48 -05:00
parent c1bed8065d
commit 22b4b39ebc
6 changed files with 20 additions and 79 deletions
+1 -10
View File
@@ -13,16 +13,7 @@
<ProjectReference Include="..\UIX.RenderApi\UIX.RenderApi.csproj" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net35' ">
<Reference Include="Accessibility" />
<Reference Include="System" />
<Reference Include="System.XML" />
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net40' ">
<ItemGroup Condition=" $(TargetFramework.StartsWith('net4')) ">
<Reference Include="Accessibility" />
<None Include="app.config" />
+13 -12
View File
@@ -1,15 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0"/>
</dependentAssembly>
</assemblyBinding>
<gcAllowVeryLargeObjects enabled="true"/>
</runtime>
<startup>
<supportedRuntime version="v2.0.50727"/></startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0"/>
</dependentAssembly>
</assemblyBinding>
<gcAllowVeryLargeObjects enabled="true"/>
</runtime>
<startup>
<supportedRuntime version="v2.0.50727"/>
</startup>
</configuration>