diff options
| author | b5f0d6c3 <[email protected]> | 2021-10-22 14:45:22 +0800 |
|---|---|---|
| committer | b5f0d6c3 <[email protected]> | 2021-10-22 14:45:22 +0800 |
| commit | cc993e05efef9fb1a797d686a18161fb906676d4 (patch) | |
| tree | 6592579d71980d58fdc466fefcb3b9a7699c1783 /mkvtool-gui/mkvtool.csproj | |
| parent | 7fde5d4d448f64c2250ab003e2ecb75a7d268733 (diff) | |
add mkvtool-gui
Diffstat (limited to 'mkvtool-gui/mkvtool.csproj')
| -rw-r--r-- | mkvtool-gui/mkvtool.csproj | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/mkvtool-gui/mkvtool.csproj b/mkvtool-gui/mkvtool.csproj new file mode 100644 index 0000000..0791134 --- /dev/null +++ b/mkvtool-gui/mkvtool.csproj @@ -0,0 +1,28 @@ +<Project Sdk="Microsoft.NET.Sdk"> + <PropertyGroup> + <OutputType>WinExe</OutputType> + <TargetFramework>net5.0</TargetFramework> + <Nullable>enable</Nullable> + <IsWindows Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">true</IsWindows> + <IsOSX Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'">true</IsOSX> + <IsLinux Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'">true</IsLinux> + </PropertyGroup> + <PropertyGroup Condition="'$(IsWindows)'=='true'"> + <DefineConstants>Windows</DefineConstants> + </PropertyGroup> + <PropertyGroup Condition="'$(IsOSX)'=='true'"> + <DefineConstants>OSX</DefineConstants> + </PropertyGroup> + <PropertyGroup Condition="'$(IsLinux)'=='true'"> + <DefineConstants>Linux</DefineConstants> + </PropertyGroup> + <ItemGroup> + <None Remove=".gitignore" /> + </ItemGroup> + <ItemGroup> + <PackageReference Include="Avalonia" Version="0.10.8" /> + <PackageReference Include="Avalonia.Desktop" Version="0.10.8" /> + <PackageReference Include="mameolan.Avalonia.Controlz" Version="1.0.0-CI-20211017-144151" /> + <PackageReference Include="MessageBox.Avalonia" Version="1.5.3" /> + </ItemGroup> +</Project> |
