-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMiraiNotes.Shared.csproj
More file actions
48 lines (41 loc) · 2.16 KB
/
MiraiNotes.Shared.csproj
File metadata and controls
48 lines (41 loc) · 2.16 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp2.0;netstandard2.0</TargetFrameworks>
<!--<TargetFramework>netstandard2.0</TargetFramework>-->
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<Configurations>UwpDebug;UwpRelease;AndroidDebug;AndroidRelease</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='UwpDebug|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='UwpRelease|AnyCPU'">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='AndroidDebug'">
<DefineConstants>DEBUG;TRACE;Android</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='AndroidRelease'">
<DefineConstants>TRACE;Android</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.0.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="3.4.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.9">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.9">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Refit" Version="5.2.1" />
<PackageReference Include="Serilog" Version="2.10.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MiraiNotes.Abstractions\MiraiNotes.Abstractions.csproj" />
<ProjectReference Include="..\MiraiNotes.Core\MiraiNotes.Core.csproj" />
</ItemGroup>
</Project>