- Updated package references to newer versions for `DigitalData.Auth.Client`, `DigitalData.Core.API`, `DigitalData.Core.Abstractions`, `DigitalData.Core.Application`, and `DigitalData.EmailProfilerDispatcher.Abstraction`. - Changed `UserManager.Domain` package version from `3.0.2` to `3.1.0` and updated assembly and file versions. - Removed `IUnique<int>` interface implementation from `BaseEntity`, `ClientUser`, `Module`, and `ModuleOfUser`. - Added data annotations to the `User` class for various properties that were previously commented out. - Updated `Microsoft.EntityFrameworkCore` package references in the `Infrastructure` project for `net7.0` and `net9.0`. - Modified solution configuration to change a project's build configuration from Debug to Release.
67 lines
3.4 KiB
XML
67 lines
3.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net7.0;net8.0;net9.0</TargetFrameworks>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PackageId>UserManager.Application</PackageId>
|
|
<Version>3.1.3</Version>
|
|
<Authors>Digital Data GmbH</Authors>
|
|
<Company>Digital Data GmbH</Company>
|
|
<Product>UserManager.Application</Product>
|
|
<Description>This package provides essential tools for managing user information and permissions. It offers comprehensive CRUD operations for user data and includes features for managing user roles and authentication.</Description>
|
|
<Copyright>Copyright 2024</Copyright>
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
<RepositoryUrl>http://git.dd:3000/AppStd/WebUserManager.git</RepositoryUrl>
|
|
<PackageTags>digital data application user maanger</PackageTags>
|
|
<AssemblyVersion>3.1.3</AssemblyVersion>
|
|
<FileVersion>3.1.3</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\Assets\icon.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DigitalData.Core.Abstractions" Version="4.0.0" />
|
|
<PackageReference Include="DigitalData.Core.Application" Version="3.3.4" />
|
|
<PackageReference Include="DigitalData.Core.DTO" Version="2.0.1" />
|
|
<PackageReference Include="DigitalData.EmailProfilerDispatcher.Abstraction" Version="3.1.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
|
|
<PackageReference Include="AutoMapper" Version="13.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="7.0.16" />
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="7.0.0" />
|
|
<PackageReference Include="System.DirectoryServices" Version="7.0.1" />
|
|
<PackageReference Include="System.DirectoryServices.AccountManagement" Version="7.0.1" />
|
|
<PackageReference Include="System.DirectoryServices.Protocols" Version="7.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
|
|
<PackageReference Include="AutoMapper" Version="14.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="7.0.16" />
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
|
|
<PackageReference Include="System.DirectoryServices" Version="8.0.0" />
|
|
<PackageReference Include="System.DirectoryServices.AccountManagement" Version="8.0.1" />
|
|
<PackageReference Include="System.DirectoryServices.Protocols" Version="8.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
|
|
<PackageReference Include="AutoMapper" Version="14.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="7.0.16" />
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="9.0.4" />
|
|
<PackageReference Include="System.DirectoryServices" Version="9.0.4" />
|
|
<PackageReference Include="System.DirectoryServices.AccountManagement" Version="9.0.4" />
|
|
<PackageReference Include="System.DirectoryServices.Protocols" Version="9.0.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DigitalData.UserManager.Domain\DigitalData.UserManager.Domain.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|