diff options
author | Christoph Enzmann <christoph.enzmann@confer.ch> | 2013-12-04 18:45:34 +0100 |
---|---|---|
committer | Christoph Enzmann <christoph.enzmann@confer.ch> | 2013-12-04 18:45:34 +0100 |
commit | 99c53801f3d4269b8058e87fa48b4bc37c7533fd (patch) | |
tree | a5b4317bfdbda4eb6b2df8396d90b9b3a60e54f5 /TwoStepsAuthenticator.UnitTests/Properties | |
parent | aefa4764cc1e858da39bc3af4e6a385d924967a2 (diff) | |
download | TwoStepsAuthenticator-99c53801f3d4269b8058e87fa48b4bc37c7533fd.zip TwoStepsAuthenticator-99c53801f3d4269b8058e87fa48b4bc37c7533fd.tar.gz TwoStepsAuthenticator-99c53801f3d4269b8058e87fa48b4bc37c7533fd.tar.bz2 |
Constant time check for codes
Diffstat (limited to 'TwoStepsAuthenticator.UnitTests/Properties')
-rw-r--r-- | TwoStepsAuthenticator.UnitTests/Properties/AssemblyInfo.cs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/TwoStepsAuthenticator.UnitTests/Properties/AssemblyInfo.cs b/TwoStepsAuthenticator.UnitTests/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..9654c60 --- /dev/null +++ b/TwoStepsAuthenticator.UnitTests/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +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("TwoStepsAuthenticator.UnitTests")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("TwoStepsAuthenticator.UnitTests")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2013")] +[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("257d7270-7a19-44d8-afdf-b21267fc0dda")] + +// 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 Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] |