Skip to content

Commit

Permalink
Downgrade .NET framework target version 4.6.1
Browse files Browse the repository at this point in the history
The generated bindings already support 4.6.1, update documentation and
target framework version in test project settings.

Signed-off-by: Kristupas Antanavičius <[email protected]>
  • Loading branch information
arg0d committed Apr 23, 2024
1 parent be8027d commit 00d3763
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ There are a few requirements depending on your target framework version.
</PropertyGroup>
```

- .NET framework `4.8`
- .NET framework `4.6.1`
```xml
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<TargetFramework>net461</TargetFramework>
<LangVersion>10.0</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageReference Include="IsExternalInit" Version="1.0.3"/>
Expand Down
2 changes: 1 addition & 1 deletion dotnet-tests/UniffiCS/UniffiCS.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net48;net6.0</TargetFrameworks>
<TargetFrameworks>net461;net6.0</TargetFrameworks>
<LangVersion>10.0</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
Expand Down

0 comments on commit 00d3763

Please sign in to comment.