generated from MaxGripe/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask-time-tracker.fsproj
60 lines (56 loc) · 2.7 KB
/
task-time-tracker.fsproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<UseAppHost>true</UseAppHost>
<TargetFramework>net9.0</TargetFramework>
<RootNamespace>task_time_tracker</RootNamespace>
<PublishSingleFile>true</PublishSingleFile>
<PublishReadyToRun>false</PublishReadyToRun>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<InvariantGlobalization>true</InvariantGlobalization>
<PublishTrimmed>false</PublishTrimmed>
<TrimmerRemoveSymbols>true</TrimmerRemoveSymbols>
<DebuggerSupport>false</DebuggerSupport>
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
<EventSourceSupport>false</EventSourceSupport>
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
<MetricsSupport>false</MetricsSupport>
<StackTraceSupport>false</StackTraceSupport>
<NullabilityInfoContextSupport>false</NullabilityInfoContextSupport>
<UseSystemResourceKeys>false</UseSystemResourceKeys>
<IlcDisableReflection>false</IlcDisableReflection>
<IlcGenerateCompleteTypeMetadata>false</IlcGenerateCompleteTypeMetadata>
<IlcOptimizeAssembly>true</IlcOptimizeAssembly>
<XmlResolverIsNetworkingEnabledByDefault>false</XmlResolverIsNetworkingEnabledByDefault>
<WarningLevel>0</WarningLevel>
<DebugType>none</DebugType>
<OptimizationPreference>Size</OptimizationPreference>
<SelfContained>true</SelfContained>
<EnableDynamicCode>true</EnableDynamicCode>
<EnableRuntimeMarshalling>true</EnableRuntimeMarshalling>
<UseSystemResourceKeys>false</UseSystemResourceKeys>
<EventSourceSupport>false</EventSourceSupport>
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
<StackTraceSupport>false</StackTraceSupport>
<NullabilityInfoContextSupport>false</NullabilityInfoContextSupport>
<StripSymbols>true</StripSymbols>
<Configuration>Release</Configuration>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="Persistence.fs" />
<Compile Include="Main.fs" />
<Compile Include="MainWindow.fs" />
<Compile Include="App.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia.Desktop" Version="11.2.5" />
<PackageReference Include="Avalonia.FuncUI" Version="1.5.1" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.5" />
</ItemGroup>
</Project>