Target net472 instead of net461 (which is no longer supported)
This commit is contained in:
Jeffrey Stedfast 2023-04-03 11:36:32 -04:00 коммит произвёл GitHub
Родитель 74c95ee1c3
Коммит ccc9bd4de8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!--We only build for net461 on Windows due to open issue with strong namer package: https://github.com/dsplaisted/strongnamer/issues/58-->
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">net461</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">netstandard2.0;net461</TargetFrameworks>
<!--We only build for net4x on Windows due to open issue with strong namer package: https://github.com/dsplaisted/strongnamer/issues/58-->
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">net472</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">netstandard2.0;net472</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<LangVersion>latest</LangVersion>