We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7996be commit a419d5dCopy full SHA for a419d5d
src/dotnet-ef/RootCommand.cs
@@ -91,7 +91,8 @@ protected override int Execute(string[] _)
91
Path.GetDirectoryName(typeof(Program).Assembly.Location)!,
92
"tools");
93
94
- var targetDir = Path.GetFullPath(Path.Combine(startupProject.ProjectDir!, startupProject.OutputPath!));
+ var targetDir = Path.GetFullPath(Path.Combine(startupProject.ProjectDir!, startupProject.OutputPath!))
95
+ .Replace('\\', Path.DirectorySeparatorChar);
96
var targetPath = Path.Combine(targetDir, project.TargetFileName!);
97
var startupTargetPath = Path.Combine(targetDir, startupProject.TargetFileName!);
98
var depsFile = Path.Combine(
0 commit comments