Question

I have an old project (written by someone else) that makes use of Script#. I've never used this tool before, so this question might seem rudimentary to some. Anyway, I tried to open the solution, but some of the projects fail to load because of this line:

<Import Project="$(ProgramFiles)\ScriptSharp\v1.0\ScriptSharp.targets" />

I've installed Script# as described here but it still doesn't create that folder.

So, how can I get around this so that I can open/build the projects?

Was it helpful?

Solution

Change that old <Import/> statement to

<Import Project="..\packages\ScriptSharp.0.8\tools\ScriptSharp.targets" />

and add scriptsharp with Nuget.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top