Skip to content

Commit

Permalink
fix: restore
Browse files Browse the repository at this point in the history
  • Loading branch information
maranmaran committed Jun 15, 2023
1 parent 75d21b0 commit a5ea8cb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
1 change: 0 additions & 1 deletion source/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<PackageId>Differ.DotNet</PackageId>
<Version>1.0.0</Version>
<Authors>Marko Urh</Authors>
<Company>Perun</Company>
Expand Down
1 change: 1 addition & 0 deletions source/Perun.Differ.Tests/Perun.Differ.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<IsPackable>false</IsPackable>
<IsPublishable>false</IsPublishable>
<RootNamespace>Differ.DotNet.Tests</RootNamespace>
<AssemblyName>Differ.DotNet.Tests</AssemblyName>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Differ.DotNet
{
internal static class AttributeDiffModifier
internal static class AttributeApplier
{
internal static DiffCollection ApplyAttributes(DiffCollection collection)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace Differ.DotNet
{
[PublicAPI]
[PublicAPI]
public sealed class DifferDotNet
{
/// <summary>
Expand All @@ -29,7 +29,7 @@ public static IEnumerable<Difference> Diff<T>(T left, T right) where T : class
DiffActions.Default
);

differences = AttributeDiffModifier.ApplyAttributes(differences);
differences = AttributeApplier.ApplyAttributes(differences);

return differences.Diffs.OrderBy(x => x.Key).Select(x => x.Value);
}
Expand Down
2 changes: 2 additions & 0 deletions source/Perun.Differ/Perun.Differ.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<Sdk Name="Microsoft.Build.CentralPackageVersions" Version="2.1.3" />
<PropertyGroup>
<PackageId>Differ.DotNet</PackageId>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<LangVersion>latest</LangVersion>
<OutputType>Library</OutputType>
<RootNamespace>Differ.DotNet</RootNamespace>
<AssemblyName>Differ.DotNet</AssemblyName>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit a5ea8cb

Please sign in to comment.