From 5ec611d351e287b98793c7f1d1ffc379c391b00a Mon Sep 17 00:00:00 2001 From: sheychen Date: Sat, 10 Dec 2016 16:03:28 +0100 Subject: [PATCH] Ajoutez des fichiers projet. --- MyCommon.sln | 22 +++++++++++ MyCommon/Class1.cs | 12 ++++++ MyCommon/MyCommon.csproj | 61 +++++++++++++++++++++++++++++ MyCommon/Properties/AssemblyInfo.cs | 36 +++++++++++++++++ 4 files changed, 131 insertions(+) create mode 100644 MyCommon.sln create mode 100644 MyCommon/Class1.cs create mode 100644 MyCommon/MyCommon.csproj create mode 100644 MyCommon/Properties/AssemblyInfo.cs diff --git a/MyCommon.sln b/MyCommon.sln new file mode 100644 index 0000000..531cf30 --- /dev/null +++ b/MyCommon.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyCommon", "MyCommon\MyCommon.csproj", "{276CEEB0-800F-4B90-AABC-D1B96DFC548B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {276CEEB0-800F-4B90-AABC-D1B96DFC548B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {276CEEB0-800F-4B90-AABC-D1B96DFC548B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {276CEEB0-800F-4B90-AABC-D1B96DFC548B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {276CEEB0-800F-4B90-AABC-D1B96DFC548B}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/MyCommon/Class1.cs b/MyCommon/Class1.cs new file mode 100644 index 0000000..cd3e6bc --- /dev/null +++ b/MyCommon/Class1.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace MyCommon +{ + public class Class1 + { + } +} diff --git a/MyCommon/MyCommon.csproj b/MyCommon/MyCommon.csproj new file mode 100644 index 0000000..ff40dd0 --- /dev/null +++ b/MyCommon/MyCommon.csproj @@ -0,0 +1,61 @@ + + + + + Debug + AnyCPU + 276ceeb0-800f-4b90-aabc-d1b96dfc548b + Library + Properties + MyCommon + MyCommon + v4.5.2 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MyCommon/Properties/AssemblyInfo.cs b/MyCommon/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..059c7b8 --- /dev/null +++ b/MyCommon/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Les informations générales relatives à un assembly dépendent de +// l'ensemble d'attributs suivant. Changez les valeurs de ces attributs pour modifier les informations +// associées à un assembly. +[assembly: AssemblyTitle("MyCommon")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MyCommon")] +[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// L'affectation de la valeur false à ComVisible rend les types invisibles dans cet assembly +// aux composants COM. Si vous devez accéder à un type dans cet assembly à partir de +// COM, affectez la valeur true à l'attribut ComVisible sur ce type. +[assembly: ComVisible(false)] + +// Le GUID suivant est pour l'ID de la typelib si ce projet est exposé à COM +[assembly: Guid("276ceeb0-800f-4b90-aabc-d1b96dfc548b")] + +// Les informations de version pour un assembly se composent des quatre valeurs suivantes : +// +// Version principale +// Version secondaire +// Numéro de build +// Révision +// +// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut +// en utilisant '*', comme indiqué ci-dessous : +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")]