-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathTrackerCouncil.Smz3.UI.csproj
More file actions
45 lines (41 loc) · 2.34 KB
/
TrackerCouncil.Smz3.UI.csproj
File metadata and controls
45 lines (41 loc) · 2.34 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<Version>9.9.0</Version>
<AssemblyName>SMZ3CasRandomizer</AssemblyName>
<ApplicationIcon>Assets\smz3.ico</ApplicationIcon>
<RootNamespace>$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
<ItemGroup>
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Include="Avalonia_Gif" Version="1.0.0" />
<PackageReference Include="MattEqualsCoder.AvaloniaControls" Version="1.4.3" />
<PackageReference Include="MattEqualsCoder.DynamicForms.Avalonia" Version="1.0.1" />
<PackageReference Include="MattEqualsCoder.MSURandomizer.Avalonia" Version="3.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
<PackageReference Include="ReactiveUI.Fody" Version="19.5.41" />
<PackageReference Include="Serilog.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.Debug" Version="3.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TrackerCouncil.Smz3.Data\TrackerCouncil.Smz3.Data.csproj" />
<ProjectReference Include="..\TrackerCouncil.Smz3.Multiplayer.Client\TrackerCouncil.Smz3.Multiplayer.Client.csproj" />
<ProjectReference Include="..\TrackerCouncil.Smz3.Tracking\TrackerCouncil.Smz3.Tracking.csproj" />
<ProjectReference Include="..\TrackerCouncil.Smz3.Chat.Twitch\TrackerCouncil.Smz3.Chat.Twitch.csproj" />
</ItemGroup>
<ItemGroup>
<None Remove="msu-randomizer-settings.yml" />
<Content Include="Assets\smz3.ico" />
<EmbeddedResource Include="msu-randomizer-settings.yml" />
</ItemGroup>
</Project>