Skip to content
This repository has been archived by the owner on Mar 11, 2021. It is now read-only.

Commit

Permalink
Fix AssemblyInfo.cs for Box2D and MonoGame PCL projects. This fixes i…
Browse files Browse the repository at this point in the history
…ssue #294 where when referencing MonoGame from a PCL a message saying that version 3.2.1 can not be found.

In the platform projects the MonoGame assemblies are build with version 0.0.0.0 and referenced that way when adding the platform versions of MonoGame to the projects.  By modifying the PCL AssemblyInfo.cs to create a 0.0.0.0 version we can then reference MonoGame classes without the specific version error.
  • Loading branch information
kjpou1 committed Sep 1, 2015
1 parent 9d6705f commit 01d7e06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PCL/Box2DPCLShared/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle ("CocosSharp.PCL.Shared")]
[assembly: AssemblyTitle ("Box2D.PCL.Shared")]
[assembly: AssemblyDescription ("")]
[assembly: AssemblyConfiguration ("")]
[assembly: AssemblyProduct ("")]
Expand Down
4 changes: 2 additions & 2 deletions PCL/MonoGamePCLShared/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.1.2.0")]
[assembly: AssemblyFileVersion("3.1.2.0")]
[assembly: AssemblyVersion("0.0.0.0")]
[assembly: AssemblyFileVersion("0.0.0.0")]
[assembly: NeutralResourcesLanguageAttribute("en-US")]

0 comments on commit 01d7e06

Please sign in to comment.