-
Notifications
You must be signed in to change notification settings - Fork 6
/
open-im-sdk.csproj
31 lines (31 loc) · 1.21 KB
/
open-im-sdk.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.4</Version>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>open_im_sdk</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<PackageId>open-im-sdk</PackageId>
<Authors>Yejian</Authors>
<Description>a dotnet sdk for open im</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;WINDOWS;IMSDK_LOG_ENABLE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>RELEASE;WINDOWS;IMSDK_LOG_ENABLE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<None Update="runtimes/win-x64/native/openimsdk.dll">
<Pack>true</Pack>
<PackagePath>./</PackagePath>
</None>
<None Update="runtimes/osx-arm64/native/libopenimsdk.dylib">
<Pack>true</Pack>
<PackagePath>./</PackagePath>
</None>
</ItemGroup>
</Project>