-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathUnity.Flex.Shared.csproj
More file actions
41 lines (33 loc) · 1.42 KB
/
Unity.Flex.Shared.csproj
File metadata and controls
41 lines (33 loc) · 1.42 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\common.props" />
<PropertyGroup>
<TargetFrameworks>net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<RootNamespace>Unity.Flex</RootNamespace>
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.5" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.5" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Text.Json" Version="9.0.5" />
<PackageReference Include="Volo.Abp.Ddd.Domain.Shared" Version="9.1.3" />
<PackageReference Include="Volo.Abp.Validation" Version="9.1.3" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.5" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Localization\Flex\*.json" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Unity.SharedKernel\Unity.SharedKernel.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="ConfigureAwait.Fody" Version="3.3.2" />
<PackageReference Update="Fody" Version="6.9.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>