-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathSampleApp.Modules.Mail.csproj
More file actions
23 lines (23 loc) · 972 Bytes
/
SampleApp.Modules.Mail.csproj
File metadata and controls
23 lines (23 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<BaseOutputPath>..\..\output</BaseOutputPath>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.21" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.21" />
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.21" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.21" />
<PackageReference Include="Avalonia.Xaml.Behaviors" Version="0.10.19" />
<PackageReference Include="Prism.Avalonia" Version="8.1.97.1021" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\SampleApp.Services\SampleApp.Services.csproj" />
<ProjectReference Include="..\SampleApp.Common\SampleApp.Common.csproj" />
</ItemGroup>
</Project>