George
George

Reputation: 449

Using Script# in an old project

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

Answers (1)

aschoenebeck
aschoenebeck

Reputation: 449

Change that old <Import/> statement to

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

and add scriptsharp with Nuget.

Upvotes: 1

Related Questions