-
Notifications
You must be signed in to change notification settings - Fork 1
/
ocpp.csproj
26 lines (22 loc) · 1.04 KB
/
ocpp.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
</PropertyGroup>
<PropertyGroup>
<DefaultItemExcludes>$(DefaultItemExcludes);citrineos-sharp\**;maeve-sharp\**</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Newtonsoft.Json.Schema" Version="4.0.1" />
<PackageReference Include="NUnit" Version="2.5.7.10213" />
<PackageReference Include="websocket-sharp-customheaders" Version="1.0.2.28050" />
<PackageReference Include="RestSharp" Version="111.4.1" />
<PackageReference Include="JsonSubTypes" Version="1.2.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>
</Project>