Compare commits

...

2 Commits

  1. 10
      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

10
DotSDL/DotSDL.csproj

@ -1,19 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>0.0.1.0</Version>
<AssemblyVersion>0.0.1.0</AssemblyVersion>
<FileVersion>0.0.1.0</FileVersion>
<Version>0.0.2.0</Version>
<AssemblyVersion>0.0.2.0</AssemblyVersion>
<FileVersion>0.0.2.0</FileVersion>
<Description>A framework for .NET designed to interoperate with SDL2.</Description>
<Copyright>(c) 2019 Ian Burgmyer</Copyright>
<Authors>Ian Burgmyer</Authors>
<Company>The DotSDL Team</Company>
<LangVersion>7.2</LangVersion>
<LangVersion>7.3</LangVersion>
<Title>DotSDL</Title>
<PackageProjectUrl>https://github.com/Spectere/DotSDL</PackageProjectUrl>
<PackageLicenseExpression>Zlib</PackageLicenseExpression>
<PackageTags>SDL; graphics; audio; input</PackageTags>
<PackageVersion>0.0.1-alpha</PackageVersion>
<PackageVersion>0.0.2-alpha</PackageVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>

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

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

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

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

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

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

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

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

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

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

Loading…
Cancel
Save