Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
130 changes: 65 additions & 65 deletions Tiler.csproj
Original file line number Diff line number Diff line change
@@ -1,65 +1,65 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<Configurations>Debug;Release;Windows7</Configurations>
<PublishTrimmed>true</PublishTrimmed>
<Copyright>Derp 2019</Copyright>
<PackageProjectUrl>http://github.com/NoUDerp/Tiler</PackageProjectUrl>
<StartupObject>Tiler.Program</StartupObject>
<Nullable>enable</Nullable>
<PlatformTarget>AnyCPU</PlatformTarget>
<Platforms>AnyCPU</Platforms>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
</PropertyGroup>
<PropertyGroup>
<PublishAot>true</PublishAot>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TargetFramework>net7.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Optimize>False</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TargetFramework>net7.0</TargetFramework>
<Optimize>True</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows7|AnyCPU'">
<TargetFramework>netcoreapp3.1</TargetFramework>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Remove="binaries\**" />
<EmbeddedResource Remove="binaries\**" />
<None Remove="binaries\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform" Version="6.2.14" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.3" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="1.0.0-beta14" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<Configurations>Debug;Release;Windows7</Configurations>
<PublishTrimmed>true</PublishTrimmed>
<Copyright>Derp 2019</Copyright>
<PackageProjectUrl>http://github.com/NoUDerp/Tiler</PackageProjectUrl>
<StartupObject>Tiler.Program</StartupObject>
<Nullable>enable</Nullable>
<PlatformTarget>AnyCPU</PlatformTarget>
<Platforms>AnyCPU</Platforms>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
</PropertyGroup>

<PropertyGroup>
<PublishAot>true</PublishAot>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TargetFramework>net7.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Optimize>False</Optimize>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TargetFramework>net7.0</TargetFramework>
<Optimize>True</Optimize>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Windows7|AnyCPU'">
<TargetFramework>netcoreapp3.1</TargetFramework>
<Optimize>True</Optimize>
</PropertyGroup>

<ItemGroup>
<Compile Remove="binaries\**" />
<EmbeddedResource Remove="binaries\**" />
<None Remove="binaries\**" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform" Version="6.2.14" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.8" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="1.0.0-beta14" />
</ItemGroup>

<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>


</Project>