diff options
author | Scott Hanselman <scotthanselman@gmail.com> | 2007-02-27 21:20:48 +0000 |
---|---|---|
committer | Scott <scotthanselman@gmail.com> | 2007-02-27 21:20:48 +0000 |
commit | cad2020d518cb650c9525d801c3ccfcf0c75a025 (patch) | |
tree | dadf764592b0fd7fb66c69bb5fdaafefc0da816e | |
parent | ca27649a9713e23ec03a7a89a5633646757d7ac1 (diff) | |
download | DotNetOpenAuth-cad2020d518cb650c9525d801c3ccfcf0c75a025.zip DotNetOpenAuth-cad2020d518cb650c9525d801c3ccfcf0c75a025.tar.gz DotNetOpenAuth-cad2020d518cb650c9525d801c3ccfcf0c75a025.tar.bz2 |
Poorman's build.bat
git-svn-id: https://dotnetopenid.googlecode.com/svn/trunk@21 01efa1a6-402a-0410-b0ae-47b76eba00f0
-rw-r--r-- | source/DiffieHellman/Properties/AssemblyInfo.cs | 35 | ||||
-rw-r--r-- | source/build.bat | 2 |
2 files changed, 37 insertions, 0 deletions
diff --git a/source/DiffieHellman/Properties/AssemblyInfo.cs b/source/DiffieHellman/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..4341667 --- /dev/null +++ b/source/DiffieHellman/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("DiffieHellman")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("DiffieHellman")]
+[assembly: AssemblyCopyright("Copyright © 2007")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("9c434421-b469-4e37-8f06-4400f01d92a1")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Revision and Build Numbers
+// by using the '*' as shown below:
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/source/build.bat b/source/build.bat new file mode 100644 index 0000000..5fb0a6e --- /dev/null +++ b/source/build.bat @@ -0,0 +1,2 @@ +msbuild DiffieHellman.sln
+msbuild Janrain.OpenId.sln
|