Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyNefyodov committed Aug 16, 2024
1 parent 031a141 commit 023c721
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/Application/Application.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\ExtensibleStorageExample\ExtensibleStorageExample.csproj" />
<ProjectReference Include="..\ExtensibleStorageExample\ExtensibleStorageExample.csproj" />
<ProjectReference Include="..\ExternalCommandOne\ExternalCommandOne.csproj" />
<ProjectReference Include="..\UpdaterExample\UpdaterExample.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\source\CommonProject\CommonProject.csproj"/>
<ProjectReference Include="..\CommonProject\CommonProject.csproj"/>
</ItemGroup>

</Project>
3 changes: 2 additions & 1 deletion source/UpdaterExample/Updaters/ParametersUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ public ChangePriority GetChangePriority()

public UpdaterId GetUpdaterId()
{
return new UpdaterId(Context.Application.ActiveAddInId, new Guid("A7BFD833-1472-4FE0-B0F0-408AC43B3DA1"));
return new UpdaterId(Context.Application.ActiveAddInId,
new Guid("A7BFD833-1472-4FE0-B0F0-408AC43B3DA1"));
}

public string GetUpdaterName()
Expand Down

0 comments on commit 023c721

Please sign in to comment.