You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<ErrorCondition="'$(TraceToolInstalled)' != '0'"Text="dotnet-trace tool is not installed. Please install it using 'dotnet tool install -g dotnet-trace'." />
24
+
25
+
<ExecCommand="$(DotNetPreviewTool) tool list -g | grep dotnet-dsrouter"ContinueOnError="true">
<ErrorCondition="'$(DsRouterToolInstalled)' != '0'"Text="dotnet-dsrouter tool is not installed. Please install it using 'dotnet tool install -g dotnet-dsrouter'." />
29
+
</Target>
30
+
31
+
<TargetName="_SetupAppForProfiling">
32
+
<PropertyGroup>
33
+
<EnvVars>DOTNET_MULTILEVEL_LOOKUP=0</EnvVars>
34
+
</PropertyGroup>
14
35
<ItemGroup>
15
-
<_FilesToCopyInclude="$(App)/*" />
36
+
<_FilesToCopyInclude="src/$(App)/*" />
16
37
</ItemGroup>
38
+
39
+
<RemoveDirDirectories="$(Intermediate)" />
40
+
41
+
<ExecCommand="$(DotNetPreviewTool) new $(App) -o $(Intermediate)"EnvironmentVariables="$(EnvVars)" />
0 commit comments