2024-01-23 19:29:37 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-01-24 18:22:13 +00:00
|
|
|
<OutputType>WinExe</OutputType>
|
2024-01-23 19:29:37 +00:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2024-01-24 18:22:13 +00:00
|
|
|
<RootNamespace>PhotinoNetApp</RootNamespace>
|
|
|
|
<AssemblyName>PhotinoNetApp</AssemblyName>
|
2024-01-23 19:29:37 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-01-24 18:22:13 +00:00
|
|
|
<PackageReference Include="Photino.NET" Version="2.6.0" />
|
2024-01-23 19:29:37 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-01-24 18:22:13 +00:00
|
|
|
<Content Update="wwwroot\**">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2024-01-23 19:29:37 +00:00
|
|
|
</Project>
|