diff options
author | Ignacio Roldán Etcheverry <neikeq@users.noreply.github.com> | 2019-12-29 13:36:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-29 13:36:50 +0100 |
commit | 12482bf8840ce2fa84d6eea7999628be426cba8d (patch) | |
tree | 36b9c9909da20b9c7f0310a506542474bf2d1cba /modules/mono/glue/GodotSharp/GodotSharpEditor/Properties/AssemblyInfo.cs | |
parent | 318c69351624f7794c51b5385d252af397c0404a (diff) | |
parent | 86274b9fc9e63c0eb6112bf4d87d67dd97fb0b86 (diff) |
Merge pull request #34657 from neikeq/tasukete
Mono/C#: Re-structure API solution and GodotTools post-build target
Diffstat (limited to 'modules/mono/glue/GodotSharp/GodotSharpEditor/Properties/AssemblyInfo.cs')
-rw-r--r-- | modules/mono/glue/GodotSharp/GodotSharpEditor/Properties/AssemblyInfo.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/mono/glue/GodotSharp/GodotSharpEditor/Properties/AssemblyInfo.cs b/modules/mono/glue/GodotSharp/GodotSharpEditor/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..3684b7a3cb --- /dev/null +++ b/modules/mono/glue/GodotSharp/GodotSharpEditor/Properties/AssemblyInfo.cs @@ -0,0 +1,25 @@ +using System.Reflection; + +// Information about this assembly is defined by the following attributes. +// Change them to the values specific to your project. + +[assembly: AssemblyTitle("GodotSharpEditor")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". +// The form "{Major}.{Minor}.*" will automatically update the build and revision, +// and "{Major}.{Minor}.{Build}.*" will update just the revision. + +[assembly: AssemblyVersion("1.0.*")] + +// The following attributes are used to specify the signing key for the assembly, +// if desired. See the Mono documentation for more information about signing. + +//[assembly: AssemblyDelaySign(false)] +//[assembly: AssemblyKeyFile("")] |