TSCHMI_done/ТСЧМИ.csproj
2024-03-14 15:12:29 +04:00

29 lines
665 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<None Remove="Images\bad.png" />
<None Remove="Images\good.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Images\bad.png" />
<Resource Include="Images\good.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<None Update="Videos\nap.mp4">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>