c716ad6571
With this change, any referenced analyzer project will be parsed by the project system and the assemblies will be passed down to the compiler. By default, the analyzer language is considered to be "cs". If another language is used, the "languageID" option should be specified inside the "analyzerOptions" section of the project.json file. Resolves #83
9 lines
383 B
XML
Executable file
9 lines
383 B
XML
Executable file
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<packageSources>
|
|
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
|
|
<clear />
|
|
<add key="dotnet-core" value="https://www.myget.org/F/dotnet-core/api/v3/index.json" />
|
|
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
|
|
</packageSources>
|
|
</configuration>
|