mirror of
https://github.com/FabInfra/S22.Sasl.git
synced 2025-03-12 06:41:52 +01:00
1. Support netcore (Upgrade netfx45 to netstandard2) 2. Removed System.Configuration dependency (Netfx legacy) 3. Removed RIPEMD-160 algorithm (Not supported in netcore) 4. Fixed DIGEST-MD5 issue (Please refer to https://github.com/smiley22/S22.Sasl/pull/3) 5. Excluded /Tests folder from project (For building only)
23 lines
848 B
XML
23 lines
848 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DocumentationFile>bin\Debug\S22.Sasl.XML</DocumentationFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="SaslConfiguration.cs" />
|
|
<Compile Remove="Tests\CramMd5Test.cs" />
|
|
<Compile Remove="Tests\DigestMd5Test.cs" />
|
|
<Compile Remove="Tests\NtlmTest.cs" />
|
|
<Compile Remove="Tests\OAuth2Test.cs" />
|
|
<Compile Remove="Tests\PlainTest.cs" />
|
|
<Compile Remove="Tests\ScramSha1Test.cs" />
|
|
<Compile Remove="Tests\SrpTest.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Tests\" />
|
|
</ItemGroup>
|
|
</Project> |