-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHRworksConnector.csproj
118 lines (118 loc) · 6.28 KB
/
HRworksConnector.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{A5146E59-60DB-42A1-843B-7A33A286F029}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>HRworksConnector</RootNamespace>
<AssemblyName>HRworksConnector</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugDemo|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\DebugDemo\</OutputPath>
<DefineConstants>TRACE;DEBUG;DEMO</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>libs\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Endpoints\AbsenceEndpoints.cs" />
<Compile Include="Base.cs" />
<Compile Include="Endpoints\GeneralEndpoints.cs" />
<Compile Include="Endpoints\PersonEndpoints.cs" />
<Compile Include="HRworksApi.cs" />
<Compile Include="Models\AbsenceEndpoints\AbsenceBase.cs" />
<Compile Include="Models\AbsenceEndpoints\GetSickLeavesRequest.cs" />
<Compile Include="Models\AbsenceEndpoints\AbsenceBaseType.cs" />
<Compile Include="Models\AbsenceEndpoints\GetSickLeavesResponse.cs" />
<Compile Include="Models\AbsenceEndpoints\SickLeaveType.cs" />
<Compile Include="Models\AbsenceEndpoints\AbsenceType.cs" />
<Compile Include="Models\AbsenceEndpoints\GetAbsencesResponse.cs" />
<Compile Include="Models\AbsenceEndpoints\GetAbsencesRequest.cs" />
<Compile Include="Models\AbsenceEndpoints\GetSickLeaveTypesResponse.cs" />
<Compile Include="Models\AbsenceEndpoints\GetAllAbsenceTypesResponse.cs" />
<Compile Include="Models\PersonEndpoints\Address.cs" />
<Compile Include="Models\PersonEndpoints\BankAccount.cs" />
<Compile Include="Models\PersonEndpoints\Cost.cs" />
<Compile Include="Models\PersonEndpoints\GetPersonMasterDataRequest.cs" />
<Compile Include="Models\PersonEndpoints\GetPersonMasterDataResponse.cs" />
<Compile Include="Models\PersonEndpoints\PermanentEstablishment.cs" />
<Compile Include="Models\PersonEndpoints\Person.cs" />
<Compile Include="Models\PersonEndpoints\Superior.cs" />
<Compile Include="Models\PersonEndpoints\WorkingDay.cs" />
<Compile Include="Models\PersonEndpoints\WorkSchedule.cs" />
<Compile Include="Models\PersonEndpoints\GetAvailableWorkingHoursRequest.cs" />
<Compile Include="Models\PersonEndpoints\GetAvailableWorkingHoursResponse.cs" />
<Compile Include="Models\GeneralEndpoints\Holiday.cs" />
<Compile Include="Models\GeneralEndpoints\HolidaysResponse.cs" />
<Compile Include="Models\GeneralEndpoints\Holidays.cs" />
<Compile Include="Models\GeneralEndpoints\OrganizationUnit.cs" />
<Compile Include="Models\PersonEndpoints\GetPersonsResponse.cs" />
<Compile Include="Models\GeneralEndpoints\OrganizationUnitsResponse.cs" />
<Compile Include="Models\GeneralEndpoints\PermanentEstablishment.cs" />
<Compile Include="Models\PersonEndpoints\PersonBaseData.cs" />
<Compile Include="Models\GeneralEndpoints\PermanentEstablishmentsResponse.cs" />
<Compile Include="Models\GeneralEndpoints\PersonsOfOrganizationUnitResponse.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Utils\Converter\Converter.cs" />
<Compile Include="Utils\JWTDecoder\Algorithms\AlgorithmFactory.cs" />
<Compile Include="Utils\JWTDecoder\Algorithms\HMACSHA256Algorithm.cs" />
<Compile Include="Utils\JWTDecoder\Algorithms\HMACSHA384Algorithm.cs" />
<Compile Include="Utils\JWTDecoder\Algorithms\HMACSHA512Algorithm.cs" />
<Compile Include="Utils\JWTDecoder\Algorithms\IAlgorithmFactory.cs" />
<Compile Include="Utils\JWTDecoder\Algorithms\IJwtAlgorithm.cs" />
<Compile Include="Utils\JWTDecoder\HashAlgorithm.cs" />
<Compile Include="Utils\JWTDecoder\Helpers\DateTimeHelpers.cs" />
<Compile Include="Utils\JWTDecoder\Helpers\EncodingHelper.cs" />
<Compile Include="Utils\JWTDecoder\JWTDecoder.cs" />
<Compile Include="Utils\JWTDecoder\JwtHeader.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>