Explain image behavior for each credential tile version, package the README and XML documentation, and complete the public API comments.
70 lines
3.1 KiB
XML
70 lines
3.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net8.0-windows;net9.0-windows;net10.0-windows;net472;net48</TargetFrameworks>
|
|
<RegisterForComInterop>false</RegisterForComInterop>
|
|
<OutputType>Library</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<PlatformTargets>AnyCPU</PlatformTargets>
|
|
<Deterministic>true</Deterministic>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
|
|
<LangVersion>9</LangVersion>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Description>Lithnet Windows Credential Provider</Description>
|
|
<Company>Lithnet</Company>
|
|
<Copyright>Copyright 2023 Lithnet Pty Ltd</Copyright>
|
|
<ProductName>Lithnet Windows Credential Provider</ProductName>
|
|
<VersionPrefix>1.1.0</VersionPrefix>
|
|
<VersionSuffix>beta1</VersionSuffix>
|
|
<Authors>Lithnet</Authors>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
<AutoIncrementPackageRevision>true</AutoIncrementPackageRevision>
|
|
<IsPackable>true</IsPackable>
|
|
<PackageId>Lithnet.CredentialProvider</PackageId>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<RepositoryUrl>https://github.com/lithnet/windows-credential-provider</RepositoryUrl>
|
|
<SupportUrl>https://github.com/lithnet/windows-credential-provider</SupportUrl>
|
|
<PackageOutputPath>D:\dev\nuget\packages</PackageOutputPath>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
|
|
<_Parameter1>Lithnet.CredentialProvider.UnitTests.x64</_Parameter1>
|
|
</AssemblyAttribute>
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
|
|
<_Parameter1>Lithnet.CredentialProvider.UnitTests.x86</_Parameter1>
|
|
</AssemblyAttribute>
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
|
|
<_Parameter1>Lithnet.CredentialProvider.UnitTests.arm64</_Parameter1>
|
|
</AssemblyAttribute>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.49-beta">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Drawing.Common" Version="6.0.0" Condition="$(TargetFrameworkIdentifier) != '.NETFramework'" />
|
|
</ItemGroup>
|
|
</Project>
|