2024-07-28 22:59:28 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<!--If you are willing to use Windows/MacOS native APIs you will need to create 3 projects.
|
|
|
|
|
One for Windows with net8.0-windows TFM, one for MacOS with net8.0-macos and one with net8.0 TFM for Linux.-->
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
2024-08-10 18:32:16 +00:00
|
|
|
|
<AssemblyName>tcms-desktop</AssemblyName>
|
|
|
|
|
<HomePage>https://tesses.net/apps/TessesCMS</HomePage>
|
|
|
|
|
<Maintainer>Mike Nolan <tesses@tesses.net></Maintainer>
|
2024-07-28 22:59:28 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
|
</PropertyGroup>
|
2024-08-10 18:32:16 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="tcms-desktop.desktop" CopyToPublishDirectory="PreserveNewest" LinuxFileMode="1755">
|
|
|
|
|
<LinuxPath>/usr/share/applications/tcms-desktop.desktop</LinuxPath>
|
|
|
|
|
</Content>
|
|
|
|
|
|
|
|
|
|
<Content Include="icon.png" CopyToPublishDirectory="PreserveNewest" LinuxFileMode="1755">
|
|
|
|
|
<LinuxPath>/usr/share/icons/tcms.png</LinuxPath>
|
|
|
|
|
</Content>
|
|
|
|
|
<DebDependency Include="libvlc-dev (>= 2.2.2)" />
|
|
|
|
|
</ItemGroup>
|
2024-07-28 22:59:28 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="$(AvaloniaVersion)" />
|
|
|
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
|
|
|
|
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="$(AvaloniaVersion)" />
|
|
|
|
|
<PackageReference Include="LibVlcSharp.Avalonia" Version="3.8.5" />
|
|
|
|
|
<PackageReference Include="Tesses.VirtualFilesystem" Version="1.0.2" />
|
|
|
|
|
<PackageReference Include="Tesses.VirtualFilesystem.Base" Version="1.0.2" />
|
|
|
|
|
<PackageReference Include="Tesses.Virtualfilesystem.Local" Version="1.0.1" />
|
2024-08-10 18:32:16 +00:00
|
|
|
|
<PackageReference Include="Packaging.Targets">
|
|
|
|
|
<Version>0.1.226-*</Version>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2024-07-28 22:59:28 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Tesses.CMS.Avalonia\Tesses.CMS.Avalonia.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|