Skip to content

Commit 061968e

Browse files
committed
Bump nuget references
1 parent 9a02c71 commit 061968e

4 files changed

Lines changed: 11 additions & 8 deletions

File tree

AssetRipper.TextureDecoder.ColorGenerator/AssetRipper.TextureDecoder.ColorGenerator.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<Nullable>enable</Nullable>
88
</PropertyGroup>
99

10-
<ItemGroup>
11-
<PackageReference Include="AssetRipper.Text.SourceGeneration" Version="1.0.0" />
10+
<ItemGroup>
11+
<PackageReference Include="AssetRipper.Text.SourceGeneration" Version="1.1.0" />
1212
</ItemGroup>
1313

14-
<ItemGroup>
15-
<ProjectReference Include="..\AssetRipper.TextureDecoder.SourceGeneration.Common\AssetRipper.TextureDecoder.SourceGeneration.Common.csproj" />
14+
<ItemGroup>
15+
<ProjectReference Include="..\AssetRipper.TextureDecoder.SourceGeneration.Common\AssetRipper.TextureDecoder.SourceGeneration.Common.csproj" />
1616
</ItemGroup>
1717

1818
</Project>

AssetRipper.TextureDecoder.TestGenerator/AssetRipper.TextureDecoder.TestGenerator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="AssetRipper.Text.SourceGeneration" Version="1.0.0" />
17+
<PackageReference Include="AssetRipper.Text.SourceGeneration" Version="1.1.0" />
1818
</ItemGroup>
1919

2020
</Project>

AssetRipper.TextureDecoder.TestGenerator/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ private static void GenerateRgbConsoleMethod()
5858
{
5959
(string prettyName, string colorName, string channelName) = list[i];
6060
writer.WriteLine($"case {i}:");
61-
using (new IndentedBlock(writer))
61+
using (new Indented(writer))
6262
{
6363
writer.WriteLine($"RgbConverter.Convert<{colorName}, {channelName}, ColorBGRA32, byte>(input, width, height, output);");
6464
writer.WriteLine("break;");
6565
}
6666
}
6767
{
6868
writer.WriteLine("default:");
69-
using (new IndentedBlock(writer))
69+
using (new Indented(writer))
7070
{
7171
writer.WriteLine("throw new NotSupportedException(mode.ToString());");
7272
}

AssetRipper.TextureDecoder.Tests/AssetRipper.TextureDecoder.Tests.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
1313
<PackageReference Include="NUnit" Version="3.13.3" />
1414
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
15-
<PackageReference Include="NUnit.Analyzers" Version="3.6.1" />
15+
<PackageReference Include="NUnit.Analyzers" Version="3.7.0">
16+
<PrivateAssets>all</PrivateAssets>
17+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
18+
</PackageReference>
1619
<PackageReference Include="coverlet.collector" Version="6.0.0" />
1720
</ItemGroup>
1821

0 commit comments

Comments
 (0)