Git Product home page Git Product logo

Comments (2)

gepa21 avatar gepa21 commented on June 20, 2024

Hello,

I was able to reproduce and identified the issue in a problematic escaping of path between Visual Studio and Windows.

the command line that is trying to launch the application is something like :
Phoesion.Glow.Reactor.Debugger.exe -QuantumSpace:Default "bin\Debug\net6.0\win-x64\Foompany.Services.HelloWorld.dll"

that (for some reason) the \n string in the path for Debug*\n*et6.0 gets escaped (it shouldn't) and ends up as a new line in the arguments! (The debugger then fails to find the file and cannot load it)

I will release a new version in couple of days that will take this into account and de-escape new lines into the "\n" string, which should fix the problem.

In the meantime, a workaround for your project is to add the
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
property in your .csproj file, so the output does not contain a directory start with the letter n (in this case net6.0)

so your project file should be something like :

<PropertyGroup Condition="'$(Configuration)'=='Debug'">
   <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>

Thank you for reporting this issue!

from glow.

gepa21 avatar gepa21 commented on June 20, 2024

fixed in version v0.0.300

from glow.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.