forked from hirschmann/nbfc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee11615
commit 2ab77e3
Showing
1 changed file
with
11 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,28 @@ | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
using System.Resources; | ||
|
||
// Information about this assembly is defined by the following attributes. | ||
// Change them to the values specific to your project. | ||
[assembly: AssemblyTitle("NbfcProbe")] | ||
[assembly: AssemblyDescription("NBFC Command-line EC-RAM probing tool")] | ||
[assembly: AssemblyDescription("Command line EC-RAM probing tool.")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyProduct("")] | ||
[assembly: AssemblyCopyright("Alexander Schlarb")] | ||
[assembly: AssemblyCompany("StagWare")] | ||
[assembly: AssemblyProduct("NbfcProbe")] | ||
[assembly: AssemblyCopyright("Copyright © 2015 Alexander Schlarb, Stefan Hirschmann")] | ||
[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.*")] | ||
[assembly: AssemblyVersion("1.1.0.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("")] | ||
|
||
[assembly: AssemblyFileVersionAttribute("1.1.0.0")] | ||
[assembly: ComVisibleAttribute(false)] | ||
[assembly: NeutralResourcesLanguageAttribute("en")] | ||
[assembly: GuidAttribute("c7e7cd6a-71f9-4489-8a59-55756d6d6de4")] |