libs.S22.Sasl/S22.Sasl.csproj
Kaleyroy 89f6286151 Upgrade netfx45 to netstandard2 & Fixed DIGEST-MD5 issue
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)
2020-05-08 18:16:35 +08:00

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>