A couple more tweaks
This commit is contained in:
@@ -74,7 +74,8 @@ namespace OpenRA
|
||||
var asms = new List<Pair<Assembly, string>> (typeof(Game).Assembly.GetTypes()
|
||||
.Select(a => a.Namespace)
|
||||
.Distinct()
|
||||
.Select(b => Pair.New(typeof(Game).Assembly, b)));
|
||||
.Where(b => b != null)
|
||||
.Select(c => Pair.New(typeof(Game).Assembly, c)));
|
||||
|
||||
// Mod assemblies assumed to contain a single namespace
|
||||
foreach (var a in m.Assemblies)
|
||||
|
||||
@@ -281,7 +281,7 @@
|
||||
<Compile Include="Chrome\Widget.cs" />
|
||||
<Compile Include="Chrome\BackgroundWidget.cs" />
|
||||
<Compile Include="Chrome\LabelWidget.cs" />
|
||||
<Compile Include="Chrome\WidgetActions.cs" />
|
||||
<Compile Include="Chrome\DefaultWidgetDelegates.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\OpenRA.FileFormats\OpenRA.FileFormats.csproj">
|
||||
|
||||
Reference in New Issue
Block a user