21 lines
541 B
XML
21 lines
541 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>VideoStudy.App</RootNamespace>
|
|
<!-- Cross-platform: Windows, Linux, macOS -->
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Photino.NET" Version="4.0.16" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\VideoStudy.UI\VideoStudy.UI.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|