-
Notifications
You must be signed in to change notification settings - Fork 12
/
common.props
62 lines (46 loc) · 2.62 KB
/
common.props
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
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<TargetFramework>net8.0</TargetFramework>
<AssemblyVersion>$(APP_VERSION).$(BUILD_NUMBER)</AssemblyVersion>
<AssemblyVersion Condition="'$(BUILD_NUMBER)' == ''">0.1.1.0</AssemblyVersion>
<Nullable>enable</Nullable>
<Product>KyoshinEewViewer for ingen</Product>
<Authors>ingen software</Authors>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<DebugType>embedded</DebugType>
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
<EventSourceSupport>false</EventSourceSupport>
<InvariantGlobalization>false</InvariantGlobalization>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishTrimmed>false</PublishTrimmed>
<TrimMode>partial</TrimMode>
<StripSymbols>false</StripSymbols>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<JsonSerializerIsReflectionEnabledByDefault>true</JsonSerializerIsReflectionEnabledByDefault>
<EnableSingleFileAnalyzer>true</EnableSingleFileAnalyzer>
<EnableAotAnalyzer>false</EnableAotAnalyzer>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<DefineConstants Condition="$(RuntimeIdentifier.StartsWith('linux'))">LINUX</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<AvaloniaVersion>11.2.1</AvaloniaVersion>
</PropertyGroup>
<!-- NuGet -->
<ItemGroup>
<PackageReference Include="Avalonia" Version="$(AvaloniaVersion)" />
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="$(AvaloniaVersion)" />
<PackageReference Include="Avalonia.ReactiveUI" Version="$(AvaloniaVersion)" />
<PackageReference Include="Avalonia.Skia" Version="$(AvaloniaVersion)" />
<PackageReference Include="FluentAvaloniaUI" Version="2.1.0" />
<PackageReference Include="Splat.DependencyInjection.SourceGenerator" Version="1.2.3" PrivateAssets="all" />
<PackageReference Condition="$(RuntimeIdentifier.StartsWith('linux'))" Include="Mono.Posix.NETStandard" Version="1.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1" />
<PackageReference Include="NReco.Logging.File" Version="1.2.1" />
<PackageReference Include="KyoshinMonitorLib" Version="0.4.6-alpha3" />
<PackageReference Include="KyoshinMonitorLib.SkiaImages" Version="0.4.5.1" />
<PackageReference Include="KyoshinMonitorLib.Timers" Version="0.4.2.1" />
<PackageReference Include="DmdataSharp" Version="0.5.6" />
</ItemGroup>
</Project>