forked from udap-tools/udap-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUdap.Server.Storage.csproj
More file actions
49 lines (43 loc) · 2.55 KB
/
Copy pathUdap.Server.Storage.csproj
File metadata and controls
49 lines (43 loc) · 2.55 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
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>Udap.Server.Storage</AssemblyName>
<RootNamespace>Udap.Server.Storage</RootNamespace>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/JoeShook/udap-dotnet</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>Joseph Shook</Authors>
<Copyright>Copyright © Joseph.Shook@Surescripts.com 2025</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageIcon>UDAP_Ecosystem_Gears 48X48.jpg</PackageIcon>
<PackageTags>UDAP;FHIR;HL7</PackageTags>
<Description>Package is a part of the UDAP reference implementation for .NET.</Description>
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="15.1.1" />
<PackageReference Include="Duende.IdentityServer.EntityFramework.Storage" Version="7.4.6" />
<PackageReference Include="Duende.IdentityServer.Storage" Version="7.4.6" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="8.0.19" Condition="'$(TargetFramework)' == 'net8.0'" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="9.0.8" Condition="'$(TargetFramework)' == 'net9.0'" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="10.0.3" Condition="'$(TargetFramework)' == 'net10.0'" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.9" Condition="'$(TargetFramework)' != 'net10.0'" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.3" Condition="'$(TargetFramework)' == 'net10.0'" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.103">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.16.0" />
<None Include="docs\README.md" Pack="true" PackagePath="\" />
<None Include="../artwork/UDAP_Ecosystem_Gears 48X48.jpg" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Folder Include="Options\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Udap.Common\Udap.Common.csproj" />
</ItemGroup>
</Project>