-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMailClient.Linker.csproj
More file actions
26 lines (23 loc) · 1.05 KB
/
MailClient.Linker.csproj
File metadata and controls
26 lines (23 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>MailClient.Linker</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<BuildOutputTargetFolder>steps</BuildOutputTargetFolder>
<NoPackageAnalysis>true</NoPackageAnalysis>
<Authors>Filip Navara</Authors>
<Company>eM Client s.r.o</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" PrivateAssets="all" Version="3.6.139" />
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="8.0.7" ExcludeAssets="all" GeneratePathProperty="true" />
<Reference Include="$(PkgMicrosoft_NET_ILLink_Tasks)\tools\net8.0\illink.dll" />
<Reference Include="$(PkgMicrosoft_NET_ILLink_Tasks)\tools\net8.0\Mono.Cecil.dll" />
</ItemGroup>
<ItemGroup>
<Content Include="build\MailClient.Linker.props" PackagePath="build\" />
</ItemGroup>
</Project>