mirror of
https://github.com/neos-sdi/adfsmfa.git
synced 2025-10-26 11:19:59 +00:00
59 lines
4.9 KiB
C#
59 lines
4.9 KiB
C#
//******************************************************************************************************************************************************************************************//
|
||
// Copyright (c) 2021 @redhook62 (adfsmfa@gmail.com) //
|
||
// //
|
||
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), //
|
||
// to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, //
|
||
// and to permit persons to whom the Software is furnished to do so, subject to the following conditions: //
|
||
// //
|
||
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. //
|
||
// //
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, //
|
||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, //
|
||
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. //
|
||
// //
|
||
// //
|
||
// https://github.com/neos-sdi/adfsmfa //
|
||
// //
|
||
//******************************************************************************************************************************************************************************************//
|
||
using System.Reflection;
|
||
using System.Resources;
|
||
using System.Runtime.CompilerServices;
|
||
using System.Runtime.InteropServices;
|
||
using System.Runtime.Versioning;
|
||
|
||
// 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("Neos.IdentityServer.MultiFactor.NotificationHub")]
|
||
[assembly: AssemblyDescription("ADFS MFA Provider")]
|
||
[assembly: AssemblyConfiguration("")]
|
||
[assembly: AssemblyCompany("Neos-Sdi")]
|
||
[assembly: AssemblyProduct("Microsoft.IdentityServer.MultiFactor")]
|
||
[assembly: AssemblyCopyright("Copyright @redhook62 © 2021")]
|
||
[assembly: AssemblyTrademark("Neos-Sdi")]
|
||
[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("2d414223-b184-4ae0-9048-18606c864ccb")]
|
||
|
||
// 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("3.0.0.0")]
|
||
[assembly: AssemblyFileVersion("3.1.2112.0")]
|
||
[assembly: AssemblyInformationalVersion("3.0.0.0")]
|
||
[assembly: NeutralResourcesLanguageAttribute("en")]
|
||
|