Skip to content

Commit

Permalink
Automatically linting code
Browse files Browse the repository at this point in the history
  • Loading branch information
david-driscoll authored and renovate[bot] committed Dec 31, 2023
1 parent ddb6110 commit 583f048
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions sample/Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8" ?>
<Project>
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Packages.props', '$(MSBuildThisFileDirectory)../'))" />
<PropertyGroup>
Expand All @@ -7,4 +7,4 @@
<ItemGroup>
<PackageVersion Include="StronglyTypedId.Templates" Version="1.0.0-beta07" />
</ItemGroup>
</Project>
</Project>
6 changes: 2 additions & 4 deletions sample/Sample.Core/Models/LaunchRecordModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ namespace Sample.Core.Models;
/// </summary>
#pragma warning disable CA1036
[StronglyTypedId(Template.Guid, "guid-efcore")]
public partial struct LaunchRecordId
{
}
public partial struct LaunchRecordId { }
#pragma warning restore CA1036

/// <summary>
Expand Down Expand Up @@ -70,4 +68,4 @@ public Mapper()
CreateMap<LaunchRecord, LaunchRecordModel>();
}
}
}
}
6 changes: 2 additions & 4 deletions sample/Sample.Core/Models/RocketModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ namespace Sample.Core.Models;
/// </summary>
#pragma warning disable CA1036
[StronglyTypedId(Template.Guid, "guid-efcore")]
public partial struct RocketId
{
}
public partial struct RocketId { }
#pragma warning restore CA1036

/// <summary>
Expand Down Expand Up @@ -42,4 +40,4 @@ public Mapper()
.ForMember(z => z.Sn, x => x.MapFrom(z => z.SerialNumber));
}
}
}
}
7 changes: 6 additions & 1 deletion sample/Sample.Core/Sample.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@
<ItemGroup>
<ProjectReference Include="..\..\src\EntityFramework\Rocket.Surgery.LaunchPad.EntityFramework.csproj" />
<ProjectReference Include="..\..\src\Foundation\Rocket.Surgery.LaunchPad.Foundation.csproj" />
<None Include="$(MSBuildThisFileDirectory)\..\Analyzers\bin\$(Configuration)\netstandard2.0\Rocket.Surgery.Conventions.Analyzers.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
<None
Include="$(MSBuildThisFileDirectory)\..\Analyzers\bin\$(Configuration)\netstandard2.0\Rocket.Surgery.Conventions.Analyzers.dll"
Pack="true"
PackagePath="analyzers/dotnet/cs"
Visible="false"
/>
<ProjectReference Include="..\..\src\Mapping\Rocket.Surgery.LaunchPad.Mapping.csproj" />
</ItemGroup>

Expand Down

0 comments on commit 583f048

Please sign in to comment.