Skip to content

Commit

Permalink
Use Roslyn NuGet package instead of relying on it being installed
Browse files Browse the repository at this point in the history
  • Loading branch information
davidebbo committed Dec 30, 2011
1 parent 34e2006 commit 4b50efb
Show file tree
Hide file tree
Showing 3 changed files with 401 additions and 2 deletions.
24 changes: 22 additions & 2 deletions RoslynRazorViewEngine/RoslynRazorViewEngine.csproj
Expand Up @@ -31,8 +31,24 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Roslyn.Compilers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
<Reference Include="Roslyn.Compilers.CSharp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
<Reference Include="Roslyn.Compilers">
<HintPath>..\packages\Roslyn.1.0.11014.5\lib\net40\Roslyn.Compilers.dll</HintPath>
</Reference>
<Reference Include="Roslyn.Compilers.CSharp">
<HintPath>..\packages\Roslyn.1.0.11014.5\lib\net40\Roslyn.Compilers.CSharp.dll</HintPath>
</Reference>
<Reference Include="Roslyn.Compilers.VisualBasic">
<HintPath>..\packages\Roslyn.1.0.11014.5\lib\net40\Roslyn.Compilers.VisualBasic.dll</HintPath>
</Reference>
<Reference Include="Roslyn.Services">
<HintPath>..\packages\Roslyn.1.0.11014.5\lib\net40\Roslyn.Services.dll</HintPath>
</Reference>
<Reference Include="Roslyn.Services.CSharp">
<HintPath>..\packages\Roslyn.1.0.11014.5\lib\net40\Roslyn.Services.CSharp.dll</HintPath>
</Reference>
<Reference Include="Roslyn.Services.VisualBasic">
<HintPath>..\packages\Roslyn.1.0.11014.5\lib\net40\Roslyn.Services.VisualBasic.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Web" />
Expand All @@ -51,6 +67,10 @@
<Compile Include="RoslynRazorView.cs" />
<Compile Include="RoslynRazorViewEngine.cs" />
</ItemGroup>
<ItemGroup>
<None Include="eula.rtf" />
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down

0 comments on commit 4b50efb

Please sign in to comment.