-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReceiver.Publish.csproj
More file actions
46 lines (45 loc) · 1.98 KB
/
Copy pathReceiver.Publish.csproj
File metadata and controls
46 lines (45 loc) · 1.98 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Arbeidstilsynet.Receiver</RootNamespace>
<PackageId>Arbeidstilsynet.Receiver</PackageId>
<Product>Arbeidstilsynet.Receiver</Product>
<Authors>Digital Samhandling</Authors>
<Company>Arbeidstilsynet</Company>
<Description>Receive meldinger with attachments and structured data</Description>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>1.8.6</Version>
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage</TargetsForTfmSpecificBuildOutput>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Arbeidstilsynet.Common.AspNetCore.Extensions" Version="3.0.1" />
<PackageReference
Include="Microsoft.Extensions.DependencyInjection.Abstractions"
Version="10.0.9"
/>
<PackageReference
Include="OpenTelemetry.Instrumentation.StackExchangeRedis"
Version="1.15.1-beta.2"
/>
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="10.7.0" />
<PackageReference Include="StackExchange.Redis" Version="3.0.17" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../../Domain/Data/Domain.Data.csproj">
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
<PrivateAssets>All</PrivateAssets>
</ProjectReference>
</ItemGroup>
<Target DependsOnTargets="ResolveReferences" Name="CopyProjectReferencesToPackage">
<ItemGroup>
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths->WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))" />
</ItemGroup>
</Target>
</Project>