-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnfoldedCircle.OppoBluRay.csproj
More file actions
64 lines (55 loc) · 2.61 KB
/
UnfoldedCircle.OppoBluRay.csproj
File metadata and controls
64 lines (55 loc) · 2.61 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
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<AssemblyName>driver</AssemblyName>
<RuntimeIdentifier Condition="'$(BuildForLinuxArm)' == 'true'">linux-arm64</RuntimeIdentifier>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<IsTrimmable>true</IsTrimmable>
<IsAotCompatible>true</IsAotCompatible>
</PropertyGroup>
<PropertyGroup Condition="'$(PublishUsingAot)' == 'true'">
<PublishAot>true</PublishAot>
</PropertyGroup>
<PropertyGroup Condition="'$(PublishUsingAot)' != 'true'">
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
<PropertyGroup>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<ExcludeFromSingleFile>appsettings.json</ExcludeFromSingleFile>
<ExcludeFromSingleFile>appsettings.Development.json</ExcludeFromSingleFile>
<ExcludeFromSingleFile>configured_entities.json</ExcludeFromSingleFile>
<ExcludeFromSingleFile>driver.json</ExcludeFromSingleFile>
</PropertyGroup>
<PropertyGroup Condition="'$(SelfContained)' == 'true'">
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
<ItemGroup>
<Content Include="..\.dockerignore">
<Link>.dockerignore</Link>
</Content>
<Content Update="appsettings.Development.json">
<DependentUpon>appsettings.json</DependentUpon>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Oppo\Oppo.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Meziantou.Analyzer" Version="2.0.231">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Theodicean.SourceGenerators" Version="0.0.1" PrivateAssets="all" ExcludeAssets="runtime">
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Theodicean.UnfoldedCircle.Server" Version="0.0.2-pre01" />
</ItemGroup>
</Project>