-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathudap.fhirserver.devdays.csproj
More file actions
44 lines (39 loc) · 1.97 KB
/
udap.fhirserver.devdays.csproj
File metadata and controls
44 lines (39 loc) · 1.97 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<!-- <DockerfileFastModeStage>debug</DockerfileFastModeStage> -->
<DockerComposeProjectPath>..\docker-compose.dcproj</DockerComposeProjectPath>
<DockerfileRunArguments>-p "7017:8081" -p "5017:8080"</DockerfileRunArguments>
<UserSecretsId>eeec10df-e86a-4abb-b93d-377bd8797a35</UserSecretsId>
<DockerfileContext></DockerfileContext>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="brianpos.Fhir.R4B.DemoFileSystemFhirServer" Version="5.11.3-rc1" />
<PackageReference Include="brianpos.Fhir.R4B.WebApi.AspNetCore" Version="5.11.3-rc1" />
<PackageReference Include="Hl7.Fhir.Specification.R4B" Version="5.11.4" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.14" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.9.0" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.2" />
<PackageReference Include="Udap.Metadata.Server" Version="0.4.6" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\aspire.ServiceDefaults\aspire.ServiceDefaults.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="CertificateStore\Community1\issued\DevDaysFhirServerRSAClient.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="CertificateStore\Community2\issued\DevDaysECDSAClient.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="CertificateStore\Community3\issued\DevDaysRevokedClient.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="specification.zip">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>