Hi all,<br><br>I&#39;ve been using the C# wrappers that come with FWTools, and I noticed that they are not strongly named.&nbsp; This is causing a problem for my project as we require everything to be strongly named.<br><br>I noticed that the <a href="http://makefile.vc">makefile.vc</a> has a &quot;sign&quot; step that generates the gdal.snk file, but it is not used after that.<br>
<br>If you change the gdal_csharp target to include the /keyfile argument, it should produce strongly named assemblies:<br>$(CSC) /debug:full /keyfile:gdal.snk /target:library /out:ogr_csharp.dll ogr\*.cs<br>$(CSC) /debug:full /keyfile:gdal.snk /target:library /out:gdal_csharp.dll gdal\*.cs <br>
$(CSC) /debug:full /keyfile:gdal.snk /target:library /out:gdalconst_csharp.dll const\*.cs<br>$(CSC) /debug:full /keyfile:gdal.snk /target:library /out:osr_csharp.dll osr\*.cs <br><br>It would be great if the bindings that come from the FWTools distro become the &quot;official&quot; way to download the binaries and they are signed when we get them.<br>
<br>Thanks!<br><br>Jason<br>