Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ltrzesniewski committed May 16, 2024
1 parent 7cc1775 commit 614b6b0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

namespace Abc.MoqComplete.ContextActions.FillWithMock
{
[ContextAction(Group = "C#", Name = "Fill parameter with Mock", Description = "Fills the current parameter with mock", Priority = short.MinValue + 1)]
[ContextAction(GroupType = typeof(CSharpContextActions), Name = "Fill parameter with Mock", Description = "Fills the current parameter with mock", Priority = short.MinValue + 1)]
public class FillParamWithMockContextAction : ContextActionBase
{
private readonly ICSharpContextActionDataProvider _dataProvider;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

namespace Abc.MoqComplete.ContextActions.FillWithMock
{
[ContextAction(Group = "C#", Name = "With local variables", Description = "Fill parameter with mock using local variables", Priority = short.MinValue)]
[ContextAction(GroupType = typeof(CSharpContextActions), Name = "With local variables", Description = "Fill parameter with mock using local variables", Priority = short.MinValue)]
public class FillParamWithMockLocalVariableContextAction : ContextActionBase
{
[NotNull]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

namespace Abc.MoqComplete.ContextActions.FillWithMock
{
[ContextAction(Group = "C#", Name = "Fill with Mock", Description = "Fills the constructor with mocks")]
[ContextAction(GroupType = typeof(CSharpContextActions), Name = "Fill with Mock", Description = "Fills the constructor with mocks")]
public class FillWithMockFieldsContextAction : ContextActionBase
{
private readonly ICSharpContextActionDataProvider _dataProvider;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

namespace Abc.MoqComplete.ContextActions.FillWithMock
{
[ContextAction(Group = "C#", Name = "With local variables", Description = "Fill with mock using local variables", Priority = short.MinValue)]
[ContextAction(GroupType = typeof(CSharpContextActions), Name = "With local variables", Description = "Fill with mock using local variables", Priority = short.MinValue)]
public sealed class FillWithMockLocalVariableContextAction : ContextActionBase
{
[NotNull]
Expand Down
1 change: 1 addition & 0 deletions Abc.MoqComplete/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<BaseIntermediateOutputPath>obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<DefaultItemExcludes>$(DefaultItemExcludes);obj\**</DefaultItemExcludes>
<OutputPath>bin\$(MSBuildProjectName)\$(Configuration)\</OutputPath>
<NoWarn>$(NoWarn);MSB3277;NU1603</NoWarn>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Debug'">
Expand Down

0 comments on commit 614b6b0

Please sign in to comment.