Skip to content

Commit

Permalink
task: updated md files
Browse files Browse the repository at this point in the history
  • Loading branch information
dtanglr committed Jul 14, 2024
1 parent df1aba6 commit 2a3c6fa
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Open your csproj file and edit the package reference, setting `PrivateAssets="Al
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Primitively" Version="1.4.20" PrivateAssets="All" />
<PackageReference Include="Primitively" Version="1.4.21" PrivateAssets="All" />
</ItemGroup>

</Project>
Expand Down Expand Up @@ -94,6 +94,7 @@ Here's a list of all the Primitively attributes currently available: -
- `[ULong]`
- `[UShort]`
- Floating-points (v1.5.x)
- `[Decimal]`
- `[Double]`
- `[Single]`
- Strings
Expand Down
6 changes: 5 additions & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Open your csproj file and edit the package reference, setting `PrivateAssets="Al
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Primitively" Version="1.4.15" PrivateAssets="All" />
<PackageReference Include="Primitively" Version="1.4.21" PrivateAssets="All" />
</ItemGroup>

</Project>
Expand Down Expand Up @@ -54,6 +54,10 @@ Here's a list of all the Primitively attributes currently available: -
- `[UInt]`
- `[ULong]`
- `[UShort]`
- Floating-points (v1.5.x)
- `[Decimal]`
- `[Double]`
- `[Single]`
- Strings
- `[String]`

Expand Down
8 changes: 7 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,10 @@ The 1.4.x release supports the following platforms:
- .NET Core 3.1¹
- .NET Standard 2.0¹

¹ It is possible (but not recommended) to use Primitively on class libraries that target platforms that preceed .NET 6. Extra configuration is required for this to work because C# 10 is a minimum requirement. To learn more, clone the Primitively git repo and open the example projects.
¹ It is possible (but not recommended) to use Primitively on class libraries that target platforms that preceed .NET 6. C# 10 is a minimum requirement so make sure your project file's `LangVersion` is set to `latest` or `10 or higher` (see below). To learn more, clone the Primitively git repo and open the example projects.

```vs
<PropertyGroup>
<LangVersion>latest</LangVersion>
</PropertyGroup>
```

0 comments on commit 2a3c6fa

Please sign in to comment.