Browse Source

Preparing solution for NuGet packaging.

mouse
Ian Burgmyer 5 years ago
parent
commit
a77ea261eb
  1. 3
      DotSDL/DotSDL.csproj
  2. 11
      DotSDL/Graphics/Sprite.cs
  3. 1
      Samples/Sample.Audio/Sample.Audio.csproj
  4. 1
      Samples/Sample.BasicPixels/Sample.BasicPixels.csproj
  5. 1
      Samples/Sample.Layers/Sample.Layers.csproj
  6. 1
      Samples/Sample.Power/Sample.Power.csproj
  7. 1
      Samples/Sample.Sprites/Sample.Sprites.csproj

3
DotSDL/DotSDL.csproj

@ -11,7 +11,8 @@
<LangVersion>7.2</LangVersion>
<Title>DotSDL</Title>
<PackageProjectUrl>https://github.com/Spectere/DotSDL</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/Spectere/DotSDL/blob/master/LICENSE.txt</PackageLicenseUrl>
<PackageLicenseExpression>Zlib</PackageLicenseExpression>
<PackageTags>SDL; graphics; audio; input</PackageTags>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>

11
DotSDL/Graphics/Sprite.cs

@ -83,17 +83,6 @@ namespace DotSDL.Graphics {
/// </summary>
public CoordinateSystem CoordinateSystem { get; set; } = CoordinateSystem.WorldSpace;
/// <summary>
/// <c>true</c> if the sprite should be drawn to the screen, otherwise <c>false</c>.
/// </summary>
public bool Shown { get; set; }
/// <summary>
/// The order in which the sprite is drawn. Lower numbered <see cref="Sprite"/> instances are drawn first
/// and will appear on the bottom.
/// </summary>
public int ZOrder { get; set; }
/// <summary>
/// Initializes a new <see cref="Sprite"/>.
/// </summary>

1
Samples/Sample.Audio/Sample.Audio.csproj

@ -3,6 +3,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<LangVersion>7.2</LangVersion>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\DotSDL\DotSDL.csproj" />

1
Samples/Sample.BasicPixels/Sample.BasicPixels.csproj

@ -3,6 +3,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<LangVersion>7.2</LangVersion>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\DotSDL\DotSDL.csproj" />

1
Samples/Sample.Layers/Sample.Layers.csproj

@ -4,6 +4,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
<LangVersion>7.2</LangVersion>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>

1
Samples/Sample.Power/Sample.Power.csproj

@ -3,6 +3,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<LangVersion>7.2</LangVersion>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\DotSDL\DotSDL.csproj" />

1
Samples/Sample.Sprites/Sample.Sprites.csproj

@ -3,6 +3,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<LangVersion>7.2</LangVersion>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\DotSDL\DotSDL.csproj" />

Loading…
Cancel
Save