Skip to content

Commit

Permalink
Edit project files; etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
peteroupc committed Dec 20, 2024
1 parent c6616d3 commit 2d75cfe
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CBOR/CBOR.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Note that after version 4.5x, the CBOR library's repository will stop including
<CodeAnalysisRuleSet>rules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup Condition=" '$(Configuration)'=='Debug' ">
<PackageReference Include='Microsoft.CodeAnalysis.NetAnalyzers' PrivateAssets='All' Version='9.0.0-preview.24454.1'/> <ItemGroup>
<!-- PackageReference Include='Microsoft.CodeAnalysis.NetAnalyzers' PrivateAssets='All' Version='9.0.0-preview.24454.1' --></ItemGroup><ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\"/>
<PackageReference Include="PolySharp" Version="1.13.2">
<PrivateAssets>all</PrivateAssets>
Expand Down
2 changes: 1 addition & 1 deletion CBORDocs2/CBORDocs2.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<AdditionalFiles Include='rules.ruleset'/>
</ItemGroup>
<ItemGroup>
<PackageReference Include='Microsoft.CodeAnalysis.NetAnalyzers' PrivateAssets='All' Version='9.0.0-preview.24454.1'/>
<!-- PackageReference Include='Microsoft.CodeAnalysis.NetAnalyzers' PrivateAssets='All' Version='9.0.0-preview.24454.1' -->
<PackageReference Include='PeterO.URIUtility' Version='1.0.0'/>
<PackageReference Include='PeterO.DataUtilities' Version='1.1.0'/>
<PackageReference Include='StyleCop.Analyzers' PrivateAssets='All' Version='1.2.0-beta.354'/>
Expand Down
2 changes: 1 addition & 1 deletion CBORTest/CBORTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<ItemGroup>
<PackageReference Include='Microsoft.NET.Test.Sdk' Version='15.9.0'/>
<PackageReference Include='NUnit' Version='3.13.2'/>
<PackageReference Include='Microsoft.CodeAnalysis.NetAnalyzers' PrivateAssets='All' Version='9.0.0-preview.24454.1'/>
<!-- PackageReference Include='Microsoft.CodeAnalysis.NetAnalyzers' PrivateAssets='All' Version='9.0.0-preview.24454.1' -->
<PackageReference Include='NUnit3TestAdapter' Version='3.16.1'>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Here is an example.
using (var stream = new MemoryStream(byteArray)) {
// Read the CBOR object from the stream
var cbor = CBORObject.Read(stream);
// The rest of the example follows the one given above.
// The rest of the example follows the one given earlier.
}
```

Expand Down

0 comments on commit 2d75cfe

Please sign in to comment.