-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathLemon.ModuleNavigation.Avaloniaui.csproj
More file actions
50 lines (44 loc) · 1.49 KB
/
Lemon.ModuleNavigation.Avaloniaui.csproj
File metadata and controls
50 lines (44 loc) · 1.49 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../Package.props" />
<PropertyGroup>
<TargetFrameworks>net8.0;net6.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Lemon.ModuleNavigation.Avaloniaui</Title>
<Description>Extending Lemon.ModuleNavigation, this package provides NavigationContainers specifically designed for AvaloniaUI.</Description>
<PackageIcon>lemon-100.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<BaseOutputPath>../output</BaseOutputPath>
</PropertyGroup>
<ItemGroup>
<AvaloniaXaml Remove="bin\**" />
<AvaloniaXaml Remove="RegionsOld\**" />
<Compile Remove="bin\**" />
<Compile Remove="RegionsOld\**" />
<EmbeddedResource Remove="bin\**" />
<EmbeddedResource Remove="RegionsOld\**" />
<None Remove="bin\**" />
<None Remove="RegionsOld\**" />
</ItemGroup>
<ItemGroup>
<None Remove="lemon-50.png" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\lemon-100.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.1.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Lemon.ModuleNavigation\Lemon.ModuleNavigation.csproj" />
</ItemGroup>
</Project>