Skip to content

Commit

Permalink
Merge pull request #1 from yevgenkre/adding_net471_architecture
Browse files Browse the repository at this point in the history
.NET Framework 471 architecture added. Version bump to 1.2.3
  • Loading branch information
yevgenkre authored Apr 10, 2024
2 parents e729aee + c0165b8 commit 6e59122
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions DuoUniversal/DuoUniversal.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>netstandard2.0;net471</TargetFrameworks>
<PackageId>DuoUniversal</PackageId>
<Version>1.2.2</Version>
<Version>1.2.3</Version>
<Authors>Duo Security</Authors>
<Company>Duo Security</Company>
<Copyright>Cisco Systems, Inc. and/or its affiliates</Copyright>
Expand All @@ -17,6 +17,7 @@
<RepositoryType>git</RepositoryType>
<Description>Duo two-factor authentication for .NET web applications</Description>
<PackageProjectUrl>https://github.com/duosecurity/duo_universal_csharp</PackageProjectUrl>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>

<ItemGroup>
Expand All @@ -25,6 +26,10 @@
<PackageReference Include="System.Text.Json" Version="5.0.2" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net471'">
<Reference Include="System.Web" />
</ItemGroup>

<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>DuoUniversal.Tests</_Parameter1>
Expand Down

0 comments on commit 6e59122

Please sign in to comment.