Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
timkur committed Sep 10, 2024
1 parent 52a3a86 commit cf77f93
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(SolutionDir)ToolingVersions.props" />
<Import Project="$(SolutionDir)Directory.Build.props" />
<PropertyGroup>
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
</PropertyGroup>
Expand Down
1 change: 0 additions & 1 deletion service/DevHome.Service/DevHome.Service.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk.Worker">
<Import Project="$(SolutionDir)ToolingVersions.props" />
<Import Project="$(SolutionDir)Directory.Build.props" />
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>DevHome.Service</RootNamespace>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(SolutionDir)ToolingVersions.props" />
<Import Project="$(SolutionDir)Directory.Build.props" />
<PropertyGroup>
<OutputType>WinExe</OutputType>
<RootNamespace>DevHome.DevDiagnostics</RootNamespace>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ private enum TraceFlags
public LoaderSnapAssistantTool()
{
_dispatcher = Microsoft.UI.Dispatching.DispatcherQueue.GetForCurrentThread();
Debug.Assert(_dispatcher is not null, "Be sure to create this object on the UI thread");
_insightsService = Application.Current.GetService<DDInsightsService>();
_devHomeService = Application.Current.GetService<IDevHomeService>();
Init();
Expand Down

0 comments on commit cf77f93

Please sign in to comment.