Commit 4d15295d authored by Jeremy Meng's avatar Jeremy Meng

Work around build issue for existing csproj's

Visual Studio tooling will use project.json to restore nuget dependencies
when it finds one beside .csproj. This change uses more specific
<project name>.project.json to specify dependencies.
parent e51fff3c
{
"runtimes": { "win": {} },
"frameworks": {
"net45": {
"dependencies": {
}
}
}
}
{
"runtimes": { "win": {} },
"frameworks": {
"net45": {
"dependencies": {
"NUnit": "3.0.0"
}
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NUnit" version="3.0.0" targetFramework="net45" />
</packages>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment