- Use PostgreSQL document library - Remove `isLegacy` property from profiles and listings - Update Docker image parameters (v 3.1 is deployed as a container) - Update dependencies
25 lines
678 B
XML
25 lines
678 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Domain.fs" />
|
|
<Compile Include="Data.fs" />
|
|
<Compile Include="Views.fs" />
|
|
<Compile Include="Handlers.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Common\JobsJobsJobs.Common.fsproj" />
|
|
<ProjectReference Include="..\Citizens\JobsJobsJobs.Citizens.fsproj" />
|
|
<ProjectReference Include="..\Profiles\JobsJobsJobs.Profiles.fsproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Update="FSharp.Core" Version="7.0.300" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|