Skip to content

Commit

Permalink
Fix assembly reference in template to drop unneeded ".dll" extension
Browse files Browse the repository at this point in the history
MonoDevelop's assembly reference resolver doesn't work if you have "Gac"
references with file extensions. Drop the .dll, and MonoDevelop will find
Tao from a suitable location such as the GAC or a pkg-config package.
  • Loading branch information
directhex committed Jun 15, 2012
1 parent e5d6d41 commit e23c977
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -26,7 +26,7 @@
<Reference type="Gac" refto="OpenTK" />
<Reference type="Gac" refto="MonoGame.Framework.Linux" />
<Reference type="Gac" refto="Lidgren.Network" />
<Reference type="Gac" refto="Tao.Sdl.dll" />
<Reference type="Gac" refto="Tao.Sdl" />
</References>
<Files>
<File name="Game1.cs" src="MonoGameApplication/Game1.cs" />
Expand Down

0 comments on commit e23c977

Please sign in to comment.