forked from udap-tools/udap-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUdap.Common.Tests.csproj
118 lines (108 loc) · 5.26 KB
/
Udap.Common.Tests.csproj
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Remove="appsettings.json" />
<None Remove="CdsHooks\CdsRequest.json" />
</ItemGroup>
<ItemGroup>
<Content Include="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
<Content Include="CdsHooks\CdsRequest.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Firely.Fhir.Packages" />
<PackageReference Include="FluentAssertions" />
<PackageReference Include="MartinCostello.Logging.XUnit" />
<PackageReference Include="Meziantou.Extensions.Logging.Xunit" />
<PackageReference Include="Microsoft.Data.SqlClient" />
<PackageReference Include="Microsoft.Extensions.Configuration" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
<PackageReference Include="Microsoft.Extensions.Logging" />
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="NSubstitute" />
<PackageReference Include="NSubstitute.Analyzers.CSharp">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Configuration.ConfigurationManager" />
<PackageReference Include="xunit" />
<PackageReference Include="xunit.abstractions" />
<PackageReference Include="xunit.runner.visualstudio">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<!-- <ProjectReference Include="..\..\Udap.Client\Udap.Client.csproj" /> -->
<ProjectReference Include="..\..\Udap.CdsHooks.Model\Udap.CdsHooks.Model.csproj" />
<ProjectReference Include="..\..\Udap.Client\Udap.Client.csproj" />
<ProjectReference Include="..\..\Udap.Common\Udap.Common.csproj" />
<ProjectReference Include="..\..\Udap.Model\Udap.Model.csproj" />
<ProjectReference Include="..\..\Udap.Smart.Model\Udap.Smart.Model.csproj" />
<ProjectReference Include="..\..\Udap.Util\Udap.Util.csproj" />
<ProjectReference Include="..\Udap.Support.Tests\Udap.Support.Tests.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="IdentityModel" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" />
</ItemGroup>
<ItemGroup>
<None Update="CertStore\issued\fhirlabs.net.client.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="CertStore\issued\fhirlabs.net.ecdsa.client.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="CertStore\issued\fhirlabs.net.expired.client.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="CertStore\issued\fhirlabs.net.mismatchBaseUrl.client.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="CertStore\issued\fhirlabs.net.mismatchSan.client.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="CertStore\issued\fhirlabs.net.untrusted.client.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="CertStore\issued\FhirLabsAdminCertification.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Model\PatientExample.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Model\Person-FASTIDUDAPPerson-Example.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Model\RelatedPersonExample.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Include="..\Udap.PKI.Generator\certstores\surefhirlabs_community\intermediates\SureFhirLabs_Intermediate.cer" Link="CertStore\intermediates\SureFhirLabs_Intermediate.cer">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="..\Udap.PKI.Generator\certstores\surefhirlabs_community\SureFhirLabs_CA.cer" Link="CertStore\anchors\SureFhirLabs_CA.cer">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>