Skip to content

Commit

Permalink
#449 Correct assembly info over projects
Browse files Browse the repository at this point in the history
  • Loading branch information
nigel-sampson committed Jun 8, 2017
1 parent 00681ba commit 3f57ce1
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<TargetFramework>netstandard1.0</TargetFramework>
<AssemblyName>Caliburn.Micro.Platform.Core</AssemblyName>
<RootNamespace>Caliburn.Micro</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand All @@ -14,6 +15,10 @@
<OutputPath>..\..\bin\netstandard\Release</OutputPath>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\GlobalAssemblyInfo.cs" Link="Properties\GlobalAssemblyInfo.cs" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Caliburn.Micro.Core\Caliburn.Micro.Core.csproj" />
</ItemGroup>
Expand Down
7 changes: 7 additions & 0 deletions src/Caliburn.Micro.Platform.Core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
using System;
using System.Reflection;

[assembly: AssemblyTitle("Caliburn Micro Platform Core")]
[assembly: AssemblyDescription("A small, yet powerful framework designed for Xaml platforms, Caliburn.Micro implements a variety of UI patterns for solving real-world problems. Patterns that are highlighted include MVVM (Presentation Model), MVP and MVC.")]

[assembly: CLSCompliant(true)]
5 changes: 5 additions & 0 deletions src/Caliburn.Micro.Platform/Caliburn.Micro.Platform.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<TargetFrameworks>netstandard1.4;net45;uap10.0;MonoAndroid10;Xamarin.iOS</TargetFrameworks>
<AssemblyName>Caliburn.Micro.Platform</AssemblyName>
<RootNamespace>Caliburn.Micro</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetFramework)' == 'net45'">
Expand Down Expand Up @@ -104,6 +105,10 @@
<PackageReference Include="Xamarin.Forms" Version="2.0.1.6505" />
</ItemGroup>

<ItemGroup>
<Compile Include="..\GlobalAssemblyInfo.cs" Link="Properties\GlobalAssemblyInfo.cs" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="MSBuild.Sdk.Extras" Version="1.0.2" />
</ItemGroup>
Expand Down
17 changes: 17 additions & 0 deletions src/Caliburn.Micro.Platform/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System;
using System.Reflection;
#if NET
using System.Runtime.InteropServices;
using System.Windows.Markup;
#endif

[assembly: AssemblyTitle("Caliburn Micro Platform")]
[assembly: AssemblyDescription("A small, yet powerful framework designed for Xaml platforms, Caliburn.Micro implements a variety of UI patterns for solving real-world problems. Patterns that are highlighted include MVVM (Presentation Model), MVP and MVC.")]

[assembly: CLSCompliant(true)]

#if NET
[assembly: Guid("6449e9cb-4d4d-4d79-8f73-71a2fc647109")]
[assembly: XmlnsDefinition("http://www.caliburnproject.org", "Caliburn.Micro")]
[assembly: XmlnsPrefix("http://www.caliburnproject.org", "cal")]
#endif

0 comments on commit 3f57ce1

Please sign in to comment.