-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPleasantUI.Example.csproj
More file actions
65 lines (58 loc) · 2.82 KB
/
Copy pathPleasantUI.Example.csproj
File metadata and controls
65 lines (58 loc) · 2.82 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
65
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<DebugType>Full</DebugType>
<IncludeAvaloniaGenerators>true</IncludeAvaloniaGenerators>
<NeutralLanguage>en</NeutralLanguage>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DebugType>embedded</DebugType>
<IncludeSymbolsInSingleFile>true</IncludeSymbolsInSingleFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\PleasantUI.DataGrid\PleasantUI.DataGrid.csproj"/>
<ProjectReference Include="..\..\src\PleasantUI.MaterialIcons\PleasantUI.MaterialIcons.csproj"/>
<ProjectReference Include="..\..\src\PleasantUI.ToolKit\PleasantUI.ToolKit.csproj"/>
<ProjectReference Include="..\..\src\PleasantUI\PleasantUI.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageReference Include="Serilog" Version="4.3.0" />
<PackageReference Include="HotAvalonia" Version="3.*" PrivateAssets="All" Publish="True" />
<PackageReference Include="MonoMod.RuntimeDetour" Version="*" PrivateAssets="All" />
<PackageReference Include="Avalonia.Markup.Xaml.Loader" Version="12.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="Properties\Localizations\*.resx"/>
<AdditionalFiles Include="Properties\Localizations\Library.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Library.Designer.cs</LastGenOutput>
</AdditionalFiles>
<AdditionalFiles Include="Properties\Localizations\App.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>App.Designer.cs</LastGenOutput>
</AdditionalFiles>
</ItemGroup>
<ItemGroup>
<Compile Update="Views\Pages\PleasantControlPages\ProgressRingPageView.axaml.cs">
<DependentUpon>ProgressRingPageView.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="Views\Pages\ControlPages\ProgressBarPageView.axaml.cs">
<DependentUpon>ProgressBarPageView.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="Properties\Localizations\App.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>App.resx</DependentUpon>
</Compile>
<Compile Update="Properties\Localizations\Library.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Library.resx</DependentUpon>
</Compile>
</ItemGroup>
</Project>