我已经克隆了autorest.csharp的代码及其子模块但是测试项目缺少依赖项
构建错误是
Error CS0234 The type or namespace name 'Modeler'
does not exist in the namespace 'AutoRest'
(are you missing an assembly reference?) autorest.csharp.test
但是解决方案文件包含以下内容
<ItemGroup>
<Reference Include="autorest.modeler">
<HintPath>$(SolutionDir)\node_modules\@microsoft.azure\autorest.modeler\src\bin\netcoreapp2.0\autorest.modeler.dll</HintPath>
<!-- <HintPath>C:\work\oneautorest\autorest.modeler\src\bin\netcoreapp2.0\autorest.modeler.dll</HintPath> -->
</Reference>
<ProjectReference Include="$(SolutionDir)src/autorest.csharp.csproj" />
</ItemGroup>
如何包含缺少的依赖项的代码(或者如果需要的话 .dll)?
我可以看到建模器的源代码在 这个存储库中,但我应该如何访问它?