-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGetJobCV.csproj
More file actions
34 lines (30 loc) · 1.13 KB
/
Copy pathGetJobCV.csproj
File metadata and controls
34 lines (30 loc) · 1.13 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Catalyst" Version="26.6.2084" />
<PackageReference Include="Catalyst.Models.English" Version="1.0.30952" />
<PackageReference Include="MessagePack" Version="3.1.7" />
<PackageReference Include="NuGet.CommandLine" Version="5.11.7">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="PdfPig" Version="0.1.15" />
</ItemGroup>
<ItemGroup>
<None Update="Resources\onet_skills.tsv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Resources\skills.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Compile Remove="tools/**/*.cs" />
</ItemGroup>
</Project>