-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathVapi.Net.csproj
More file actions
60 lines (56 loc) · 2.63 KB
/
Copy pathVapi.Net.csproj
File metadata and controls
60 lines (56 loc) · 2.63 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
50
51
52
53
54
55
56
57
58
59
60
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net462;net8.0;net9.0;netstandard2.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>12</LangVersion>
<Nullable>enable</Nullable>
<Version>2.0.1</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/VapiAI/server-sdk-csharp</PackageProjectUrl>
<PolySharpIncludeRuntimeSupportedAttributes>true</PolySharpIncludeRuntimeSupportedAttributes>
</PropertyGroup>
<PropertyGroup>
<UsePortableDateOnly>false</UsePortableDateOnly>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net462' Or '$(TargetFramework)' == 'netstandard2.0'">
<DefineConstants>$(DefineConstants);USE_PORTABLE_DATE_ONLY</DefineConstants>
<UsePortableDateOnly>true</UsePortableDateOnly>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net462' Or '$(TargetFramework)' == 'netstandard2.0'">
<Using Include="System.Net.Http" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Linq" />
<Using Include="System.Threading" />
<Using Include="System.Threading.Tasks" />
</ItemGroup>
<ItemGroup Condition="'$(UsePortableDateOnly)' == 'true'">
<PackageReference Include="Portable.System.DateTimeOnly" Version="9.0.1" />
</ItemGroup>
<ItemGroup Condition="'$(UsePortableDateOnly)' == 'false'">
<Compile Remove="Core\DateOnlyConverter.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="PolySharp" Version="1.15.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="OneOf" Version="3.0.271" />
<PackageReference Include="OneOf.Extended" Version="3.0.271" />
<PackageReference Include="System.Net.Http" Version="[4.3.4,)" />
<PackageReference Include="System.Text.RegularExpressions" Version="[4.3.1,)" />
</ItemGroup>
<ItemGroup Condition="!$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">
<PackageReference Include="System.Text.Json" Version="9.0.9" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Vapi.Net.Test</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<Import Project="Vapi.Net.Custom.props" Condition="Exists('Vapi.Net.Custom.props')" />
</Project>