From d43278781c93d68b6ec2663c8e1bc81c1f793f14 Mon Sep 17 00:00:00 2001 From: Andre Azevedo Date: Tue, 16 Aug 2011 22:38:25 -0300 Subject: [PATCH] Adding web infrastructure project. related #1 --- .../PetStore.Infrastructure.Web.csproj | 54 +++++++++++++++++++ .../Properties/AssemblyInfo.cs | 36 +++++++++++++ 2 files changed, 90 insertions(+) create mode 100644 src/PetStore.Infrastructure.Web/PetStore.Infrastructure.Web.csproj create mode 100644 src/PetStore.Infrastructure.Web/Properties/AssemblyInfo.cs diff --git a/src/PetStore.Infrastructure.Web/PetStore.Infrastructure.Web.csproj b/src/PetStore.Infrastructure.Web/PetStore.Infrastructure.Web.csproj new file mode 100644 index 0000000..7e32bdd --- /dev/null +++ b/src/PetStore.Infrastructure.Web/PetStore.Infrastructure.Web.csproj @@ -0,0 +1,54 @@ + + + + Debug + AnyCPU + 8.0.30703 + 2.0 + 38970061-e4d8-4a4f-996b-711117bbb1a5 + Library + Properties + PetStore.Infrastructure.Web + PetStore.Infrastructure.Web + v4.0 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/PetStore.Infrastructure.Web/Properties/AssemblyInfo.cs b/src/PetStore.Infrastructure.Web/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0fc9863 --- /dev/null +++ b/src/PetStore.Infrastructure.Web/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("PetStore.Infrastructure.Web")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("PetStore.Infrastructure.Web")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2011")] +[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("38970061-e4d8-4a4f-996b-711117bbb1a5")] + +// 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")]