Skip to content

Commit

Permalink
package updates
Browse files Browse the repository at this point in the history
  • Loading branch information
m0sa committed Dec 14, 2018
1 parent 48394be commit 576760c
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 13 deletions.
4 changes: 4 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
<RepositoryType>git</RepositoryType>
<ProjectUrl>https://github.com/StackExchange/StackExchange.Precompilation</ProjectUrl>
<PackageReleaseNotes><![CDATA[
Version 5.1.0
* updating roslyn packages to 2.10.0
* updating mvc packages to 5.2.7
Version 5.0.0
* updating how Precompilation.Build resolves it's Workspaces dependency
* retiring Precompilation.Metaprogramming
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,15 @@ void Resolve(AssemblyName name, Func<Assembly> loader)
.AsParallel()
.ForAll(dll =>
{
var assemblyName = AssemblyName.GetAssemblyName(dll);
Resolve(assemblyName, () => Assembly.LoadFile(dll));
try
{
var assemblyName = AssemblyName.GetAssemblyName(dll);
Resolve(assemblyName, () => Assembly.LoadFile(dll));
}
catch (Exception ex)
{
Console.WriteLine("hidden: failed to resolve assembly {0}: {1}", dll, ex.Message);
}
});

// load all the other references
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<Project>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Project>
<Name>StackExchange.Precompilation</Name>
</ProjectReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="2.8.2" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="2.10.0" PrivateAssets="all" />
</ItemGroup>

<Target Name="_ToolsSetup">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.4.1" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.8.2" ExcludeAssets="analyzers"/>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.10.0" ExcludeAssets="analyzers"/>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Web" />
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.2.4" />
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.2.7" />
<ProjectReference Include="..\StackExchange.Precompilation\StackExchange.Precompilation.csproj" />

<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="2.8.2" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="2.10.0" PrivateAssets="all" />
<ProjectReference Include="..\StackExchange.Precompilation.Build\StackExchange.Precompilation.Build.csproj" IncludeAssets="compile" PrivateAssets="all" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Test.ConsoleApp/Test.ConsoleApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
but since we don't have the package yet, msbuild complains about the .csproj not targeting netstandard,
so we're pulling it's references in manually.
-->
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="2.8.2" IncludeAssets="compile" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="2.10.0" IncludeAssets="compile" PrivateAssets="all" />
</ItemGroup>
<Import Project="..\StackExchange.Precompilation.Build\StackExchange.Precompilation.Build.targets" />
</Project>
4 changes: 2 additions & 2 deletions Test.WebApp.ExternalViews/Test.WebApp.ExternalViews.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
</ItemGroup>
<ItemGroup>
<Reference Include="System.Web" />
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.2.4" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.8.2" />
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.2.7" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.10.0" />
</ItemGroup>
<PropertyGroup>
<SEPrecompilerPath Condition="'$(SEPrecompilerPath)' == ''">$(SolutionDir)StackExchange.Precompilation.Build\bin\$(Configuration)\$(TargetFramework)\</SEPrecompilerPath>
Expand Down
8 changes: 5 additions & 3 deletions Test.WebApp/Test.WebApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<UseGlobalApplicationHostFile />
<TargetFrameworkProfile />
<RuntimeIdentifiers>win</RuntimeIdentifiers>
<DependsOnNETStandard>false</DependsOnNETStandard><!-- lies -->
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -58,6 +59,7 @@
<Project>{5fcaecc3-787b-473f-a372-783d0c235190}</Project>
<Name>Test.Module</Name>
</ProjectReference>
<Reference Include="netstandard" />
</ItemGroup>
<ItemGroup>
<Compile Include="**\*.cs" Exclude="obj\**\*" />
Expand All @@ -67,9 +69,9 @@
<ItemGroup>
<Reference Include="System.Web" />
<Reference Include="Microsoft.CSharp" />
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.2.4" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.8.2" />
<PackageReference Include="System.ValueTuple" Version="4.4.0" />
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.2.7" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.10.0" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
<PackageReference Include="MSBuild.Microsoft.VisualStudio.Web.targets" Version="14.0.0.3" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
Expand Down
2 changes: 1 addition & 1 deletion semver.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.0.0
5.1.0

0 comments on commit 576760c

Please sign in to comment.