Reputation: 449
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?
Upvotes: 1
Views: 289
Reputation: 449
Change that old <Import/>
statement to
<Import Project="..\packages\ScriptSharp.0.8\tools\ScriptSharp.targets" />
and add scriptsharp with Nuget.
Upvotes: 1