2020-05-08 18:16:35 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2014-01-06 09:27:48 +01:00
|
|
|
|
<PropertyGroup>
|
2021-01-23 23:50:26 +01:00
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2024-02-27 14:07:39 +01:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
2014-01-06 09:27:48 +01:00
|
|
|
|
<OutputType>Library</OutputType>
|
2020-05-08 18:16:35 +08:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2021-01-10 22:57:05 +01:00
|
|
|
|
<AssemblyName>S22.Sasl.DotNetCore</AssemblyName>
|
|
|
|
|
<PackageId>S22.Sasl.DotNetCore</PackageId>
|
|
|
|
|
<Authors>S22.Sasl, kaleyroy, kjkriegel</Authors>
|
|
|
|
|
<PackageLicenseUrl></PackageLicenseUrl>
|
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
2014-01-06 09:27:48 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DocumentationFile>bin\Debug\S22.Sasl.XML</DocumentationFile>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2020-05-08 18:16:35 +08:00
|
|
|
|
<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" />
|
2014-01-06 09:27:48 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2020-05-08 18:16:35 +08:00
|
|
|
|
<Folder Include="Tests\" />
|
2014-01-06 09:27:48 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|