-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e5d552b
commit eb2d359
Showing
1 changed file
with
139 additions
and
139 deletions.
There are no files selected for viewing
278 changes: 139 additions & 139 deletions
278
src/Bytewizer.TinyCLR.Http.Authentication/Bytewizer.TinyCLR.Http.Authentication.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,142 +1,142 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{A94B42E0-7FCC-448F-9645-6732ABA96F28}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>Bytewizer.TinyCLR.Http.Authentication</RootNamespace> | ||
<AssemblyName>Bytewizer.TinyCLR.Http.Authentication</AssemblyName> | ||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<ProjectTypeGuids>{A1948822-69DD-4150-919B-F3F42EFB71CC};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
<NuGetPackageImportStamp> | ||
</NuGetPackageImportStamp> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<VersionPrefix>2.0.0</VersionPrefix> | ||
<Version Condition=" '$(Version)' == '' and '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version> | ||
<Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version> | ||
<Authors>Microcompiler</Authors> | ||
<Company>Bytewizer Technology</Company> | ||
<Description>Hypertext Transfer Protocol (Http) authentication extension library built for TinyCLR IoT devices.</Description> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<BuildNumber Condition=" '$(BuildNumber)' == '' ">0</BuildNumber> | ||
<PackageId>$(AssemblyName)</PackageId> | ||
<PackageTags>ghi tinyclr tinyclros sitcore iot http-server http https basic digest authentication</PackageTags> | ||
<PackageLicenseFile>LICENSE.md</PackageLicenseFile> | ||
<PackageIcon>package-logo.png</PackageIcon> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<DocumentationFile>bin\Debug\Bytewizer.TinyCLR.Http.Authentication.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<DocumentationFile>bin\Release\Bytewizer.TinyCLR.Http.Authentication.xml</DocumentationFile> | ||
<DebugSymbols>true</DebugSymbols> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)" /> | ||
<None Include="..\..\images\package-logo.png" Pack="true" PackagePath="\" /> | ||
<None Include="README.md" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Authenticator\BasicAuthenticationProvider.cs" /> | ||
<Compile Include="Http\AuthHelper.cs" /> | ||
<Compile Include="Http\DefaultAccountProvider.cs" /> | ||
<Compile Include="Http\DefaultUser.cs" /> | ||
<Compile Include="Authenticator\DigestAuthenticationProvider.cs" /> | ||
<Compile Include="Authenticator\AuthenticateResult.cs" /> | ||
<Compile Include="Http\IUser.cs" /> | ||
<Compile Include="Features\HttpAuthenticationFeature.cs" /> | ||
<Compile Include="Features\IHttpAuthenticationFeature.cs" /> | ||
<Compile Include="Http\HttpContextExtensions.cs" /> | ||
<Compile Include="Http\IAuthenticationProvider.cs" /> | ||
<Compile Include="Middleware\AuthenticationMiddleware.cs" /> | ||
<Compile Include="Middleware\AuthenticationMiddlewareExtensions.cs" /> | ||
<Compile Include="Middleware\AuthenticationOptions.cs" /> | ||
<Compile Include="Http\IAccountProvider.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Bytewizer.TinyCLR.Http\Bytewizer.TinyCLR.Http.csproj"> | ||
<Project>{EB778176-633A-4997-A683-2C891C5DB436}</Project> | ||
<Name>Bytewizer.TinyCLR.Http</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\Bytewizer.TinyCLR.Sockets\Bytewizer.TinyCLR.Sockets.csproj"> | ||
<Project>{CECB4A63-1460-4721-96B1-7FCCEC0FAF84}</Project> | ||
<Name>Bytewizer.TinyCLR.Sockets</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="GHIElectronics.TinyCLR.Core"> | ||
<Version>2.1.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="GHIElectronics.TinyCLR.Cryptography"> | ||
<Version>2.1.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub"> | ||
<Version>1.0.0</Version> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="NuGet.Build.Tasks.Pack"> | ||
<Version>5.10.0</Version> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup /> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
<Target Name="BeforeBuild"> | ||
<Message Text="Updating AssemblyInfo to Version $(VersionPrefix).$(BuildNumber)"> | ||
</Message> | ||
<ItemGroup> | ||
<AssemblyAttributes Include="AssemblyCompany"> | ||
<_Parameter1_TypeName>System.String</_Parameter1_TypeName> | ||
<_Parameter1>$(Company)</_Parameter1> | ||
</AssemblyAttributes> | ||
<AssemblyAttributes Include="AssemblyDescription"> | ||
<_Parameter1_TypeName>System.String</_Parameter1_TypeName> | ||
<_Parameter1>$(Description)</_Parameter1> | ||
</AssemblyAttributes> | ||
<AssemblyAttributes Include="AssemblyCopyright"> | ||
<_Parameter1_TypeName>System.String</_Parameter1_TypeName> | ||
<_Parameter1>$(Copyright)</_Parameter1> | ||
</AssemblyAttributes> | ||
<AssemblyAttributes Include="AssemblyVersion"> | ||
<_Parameter1_TypeName>System.String</_Parameter1_TypeName> | ||
<_Parameter1>$(VersionPrefix)</_Parameter1> | ||
</AssemblyAttributes> | ||
<AssemblyAttributes Include="AssemblyFileVersion"> | ||
<_Parameter1_TypeName>System.String</_Parameter1_TypeName> | ||
<_Parameter1>$(VersionPrefix).$(BuildNumber)</_Parameter1> | ||
</AssemblyAttributes>s | ||
<AssemblyAttributes Include="AssemblyInformationalVersion"> | ||
<_Parameter1_TypeName>System.String</_Parameter1_TypeName> | ||
<_Parameter1>$(Version)</_Parameter1> | ||
</AssemblyAttributes> | ||
</ItemGroup> | ||
<MakeDir Directories="$(IntermediateOutputPath)" /> | ||
<WriteCodeFragment Language="C#" OutputFile="$(IntermediateOutputPath)CustomAssemblyInfo.cs" AssemblyAttributes="@(AssemblyAttributes)" /> | ||
<ItemGroup> | ||
<Compile Include="$(IntermediateOutputPath)CustomAssemblyInfo.cs" /> | ||
</ItemGroup> | ||
</Target> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{A94B42E0-7FCC-448F-9645-6732ABA96F28}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>Bytewizer.TinyCLR.Http.Authentication</RootNamespace> | ||
<AssemblyName>Bytewizer.TinyCLR.Http.Authentication</AssemblyName> | ||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<ProjectTypeGuids>{A1948822-69DD-4150-919B-F3F42EFB71CC};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
<NuGetPackageImportStamp> | ||
</NuGetPackageImportStamp> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<VersionPrefix>2.0.0</VersionPrefix> | ||
<Version Condition=" '$(Version)' == '' and '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version> | ||
<Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version> | ||
<Authors>Microcompiler</Authors> | ||
<Company>Bytewizer Technology</Company> | ||
<Description>Hypertext Transfer Protocol (Http) authentication extension library built for TinyCLR IoT devices.</Description> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<BuildNumber Condition=" '$(BuildNumber)' == '' ">0</BuildNumber> | ||
<PackageId>$(AssemblyName)</PackageId> | ||
<PackageTags>ghi tinyclr tinyclros sitcore iot http-server http https basic digest authentication</PackageTags> | ||
<PackageLicenseFile>LICENSE.md</PackageLicenseFile> | ||
<PackageIcon>package-logo.png</PackageIcon> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<DocumentationFile>bin\Debug\Bytewizer.TinyCLR.Http.Authentication.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<DocumentationFile>bin\Release\Bytewizer.TinyCLR.Http.Authentication.xml</DocumentationFile> | ||
<DebugSymbols>true</DebugSymbols> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)" /> | ||
<None Include="..\..\images\package-logo.png" Pack="true" PackagePath="\" /> | ||
<None Include="README.md" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Authenticator\BasicAuthenticationProvider.cs" /> | ||
<Compile Include="Http\AuthHelper.cs" /> | ||
<Compile Include="Http\DefaultAccountProvider.cs" /> | ||
<Compile Include="Http\DefaultUser.cs" /> | ||
<Compile Include="Authenticator\DigestAuthenticationProvider.cs" /> | ||
<Compile Include="Authenticator\AuthenticateResult.cs" /> | ||
<Compile Include="Http\IUser.cs" /> | ||
<Compile Include="Features\HttpAuthenticationFeature.cs" /> | ||
<Compile Include="Features\IHttpAuthenticationFeature.cs" /> | ||
<Compile Include="Http\HttpContextExtensions.cs" /> | ||
<Compile Include="Http\IAuthenticationProvider.cs" /> | ||
<Compile Include="Middleware\AuthenticationMiddleware.cs" /> | ||
<Compile Include="Middleware\AuthenticationMiddlewareExtensions.cs" /> | ||
<Compile Include="Middleware\AuthenticationOptions.cs" /> | ||
<Compile Include="Http\IAccountProvider.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Bytewizer.TinyCLR.Http\Bytewizer.TinyCLR.Http.csproj"> | ||
<Project>{EB778176-633A-4997-A683-2C891C5DB436}</Project> | ||
<Name>Bytewizer.TinyCLR.Http</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\Bytewizer.TinyCLR.Sockets\Bytewizer.TinyCLR.Sockets.csproj"> | ||
<Project>{CECB4A63-1460-4721-96B1-7FCCEC0FAF84}</Project> | ||
<Name>Bytewizer.TinyCLR.Sockets</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="GHIElectronics.TinyCLR.Core"> | ||
<Version>2.1.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="GHIElectronics.TinyCLR.Cryptography"> | ||
<Version>2.1.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub"> | ||
<Version>1.0.0</Version> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="NuGet.Build.Tasks.Pack"> | ||
<Version>5.10.0</Version> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup /> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
<Target Name="BeforeBuild"> | ||
<Message Text="Updating AssemblyInfo to Version $(VersionPrefix).$(BuildNumber)"> | ||
</Message> | ||
<ItemGroup> | ||
<AssemblyAttributes Include="AssemblyCompany"> | ||
<_Parameter1_TypeName>System.String</_Parameter1_TypeName> | ||
<_Parameter1>$(Company)</_Parameter1> | ||
</AssemblyAttributes> | ||
<AssemblyAttributes Include="AssemblyDescription"> | ||
<_Parameter1_TypeName>System.String</_Parameter1_TypeName> | ||
<_Parameter1>$(Description)</_Parameter1> | ||
</AssemblyAttributes> | ||
<AssemblyAttributes Include="AssemblyCopyright"> | ||
<_Parameter1_TypeName>System.String</_Parameter1_TypeName> | ||
<_Parameter1>$(Copyright)</_Parameter1> | ||
</AssemblyAttributes> | ||
<AssemblyAttributes Include="AssemblyVersion"> | ||
<_Parameter1_TypeName>System.String</_Parameter1_TypeName> | ||
<_Parameter1>$(VersionPrefix)</_Parameter1> | ||
</AssemblyAttributes> | ||
<AssemblyAttributes Include="AssemblyFileVersion"> | ||
<_Parameter1_TypeName>System.String</_Parameter1_TypeName> | ||
<_Parameter1>$(VersionPrefix).$(BuildNumber)</_Parameter1> | ||
</AssemblyAttributes> | ||
<AssemblyAttributes Include="AssemblyInformationalVersion"> | ||
<_Parameter1_TypeName>System.String</_Parameter1_TypeName> | ||
<_Parameter1>$(Version)</_Parameter1> | ||
</AssemblyAttributes> | ||
</ItemGroup> | ||
<MakeDir Directories="$(IntermediateOutputPath)" /> | ||
<WriteCodeFragment Language="C#" OutputFile="$(IntermediateOutputPath)CustomAssemblyInfo.cs" AssemblyAttributes="@(AssemblyAttributes)" /> | ||
<ItemGroup> | ||
<Compile Include="$(IntermediateOutputPath)CustomAssemblyInfo.cs" /> | ||
</ItemGroup> | ||
</Target> | ||
</Project> |