mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
937 B
33 lines
937 B
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<OutputType>WinExe</OutputType> |
|
<TargetFramework>net6.0-windows</TargetFramework> |
|
<RootNamespace>ErsatzTV_Windows</RootNamespace> |
|
<Nullable>enable</Nullable> |
|
<UseWindowsForms>true</UseWindowsForms> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
<ApplicationIcon>Ersatztv.ico</ApplicationIcon> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<Content Include="Ersatztv.ico"> |
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory> |
|
</Content> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="CliWrap" Version="3.4.4" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\ErsatzTV.Core\ErsatzTV.Core.csproj" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Compile Update="Program.cs"> |
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory> |
|
</Compile> |
|
</ItemGroup> |
|
|
|
</Project> |