58 lines
2.0 KiB
XML
58 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
||
<PropertyGroup>
|
||
<TargetFrameworks>net462;net7.0;net8.0;net9.0</TargetFrameworks>
|
||
<PackageId>DigitalData.EmailProfilerDispatcher.Abstraction.Attributes</PackageId>
|
||
<Company>Digital Data GmbH</Company>
|
||
<Copyright>Copyright 2025</Copyright>
|
||
<PackageIcon>icon.png</PackageIcon>
|
||
<PackageTags>digital data email dispatcher</PackageTags>
|
||
<Description>This package provides the necessary ‘Attributes’ for the DigitalData.EmailProfilerDispatcher.Abstractions library to support the .NET Framrwork.</Description>
|
||
<Authors>Digital Data GmbH</Authors>
|
||
<RepositoryUrl>http://git.dd:3000/AppStd/EmailProfilerDispatcher.git</RepositoryUrl>
|
||
<Version>1.0.0</Version>
|
||
<AssemblyVersion>1.0.0</AssemblyVersion>
|
||
<FileVersion>1.0.0</FileVersion>
|
||
</PropertyGroup>
|
||
|
||
<PropertyGroup Condition="'$(TargetFramework)' == 'net462'">
|
||
<ImplicitUsings>disable</ImplicitUsings>
|
||
<LangVersion>7.3</LangVersion>
|
||
</PropertyGroup>
|
||
|
||
<PropertyGroup Condition="'$(TargetFramework)' != 'net462'">
|
||
<ImplicitUsings>enable</ImplicitUsings>
|
||
<LangVersion>latest</LangVersion>
|
||
</PropertyGroup>
|
||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
|
||
<PackageReference Include="System.ComponentModel.Annotations" Version="4.7.0" />
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<None Include="..\Assets\icon.png">
|
||
<Pack>True</Pack>
|
||
<PackagePath>\</PackagePath>
|
||
</None>
|
||
</ItemGroup>
|
||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
|
||
<PackageReference Include="DigitalData.Core.Abstractions.Security">
|
||
<Version>1.0.0</Version>
|
||
</PackageReference>
|
||
</ItemGroup>
|
||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
|
||
<PackageReference Include="DigitalData.Core.Abstractions.Security">
|
||
<Version>1.0.0</Version>
|
||
</PackageReference>
|
||
</ItemGroup>
|
||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
|
||
<PackageReference Include="DigitalData.Core.Abstractions.Security">
|
||
<Version>1.0.0</Version>
|
||
</PackageReference>
|
||
</ItemGroup>
|
||
|
||
</Project>
|