Browse Source

Retargeted samples for .NET 5, normalized C# ver.

master
Ian Burgmyer 3 years ago
parent
commit
60247572c3
  1. 2
      DotSDL/DotSDL.csproj
  2. 4
      Samples/Sample.Audio/Sample.Audio.csproj
  3. 4
      Samples/Sample.BasicPixels/Sample.BasicPixels.csproj
  4. 4
      Samples/Sample.Layers/Sample.Layers.csproj
  5. 4
      Samples/Sample.Power/Sample.Power.csproj
  6. 4
      Samples/Sample.Sprites/Sample.Sprites.csproj

2
DotSDL/DotSDL.csproj

@ -8,7 +8,7 @@
<Copyright>(c) 2019 Ian Burgmyer</Copyright> <Copyright>(c) 2019 Ian Burgmyer</Copyright>
<Authors>Ian Burgmyer</Authors> <Authors>Ian Burgmyer</Authors>
<Company>The DotSDL Team</Company> <Company>The DotSDL Team</Company>
<LangVersion>7.2</LangVersion> <LangVersion>7.3</LangVersion>
<Title>DotSDL</Title> <Title>DotSDL</Title>
<PackageProjectUrl>https://github.com/Spectere/DotSDL</PackageProjectUrl> <PackageProjectUrl>https://github.com/Spectere/DotSDL</PackageProjectUrl>
<PackageLicenseExpression>Zlib</PackageLicenseExpression> <PackageLicenseExpression>Zlib</PackageLicenseExpression>

4
Samples/Sample.Audio/Sample.Audio.csproj

@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework> <TargetFramework>net5.0</TargetFramework>
<LangVersion>7.2</LangVersion> <LangVersion>9</LangVersion>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

4
Samples/Sample.BasicPixels/Sample.BasicPixels.csproj

@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework> <TargetFramework>net5.0</TargetFramework>
<LangVersion>7.2</LangVersion> <LangVersion>9</LangVersion>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

4
Samples/Sample.Layers/Sample.Layers.csproj

@ -2,8 +2,8 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework> <TargetFramework>net5.0</TargetFramework>
<LangVersion>7.2</LangVersion> <LangVersion>9</LangVersion>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
</PropertyGroup> </PropertyGroup>

4
Samples/Sample.Power/Sample.Power.csproj

@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework> <TargetFramework>net5.0</TargetFramework>
<LangVersion>7.2</LangVersion> <LangVersion>9</LangVersion>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

4
Samples/Sample.Sprites/Sample.Sprites.csproj

@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework> <TargetFramework>net5.0</TargetFramework>
<LangVersion>7.2</LangVersion> <LangVersion>9</LangVersion>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

Loading…
Cancel
Save