mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
Remove bindings project
- No longer needed. Binding code should be included directly in project for more control.
This commit is contained in:
parent
1168407f09
commit
2725e1df2a
@ -1,50 +0,0 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
<RootNamespace>Bindings</RootNamespace>
|
||||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
||||
<Description>Testing C# bindings for raylib, a simple and easy-to-use library to learn videogames programming.</Description>
|
||||
<PackageLicenseUrl>https://github.com/ChrisDill/Raylib-cs/blob/master/LICENSE</PackageLicenseUrl>
|
||||
<PackageIconUrl>https://github.com/ChrisDill/Raylib-cs/blob/master/Logo/raylib-cs.ico</PackageIconUrl>
|
||||
<Copyright>Copyright 2018</Copyright>
|
||||
<PackageProjectUrl>https://github.com/ChrisDill/Raylib-cs</PackageProjectUrl>
|
||||
<PackageReleaseNotes>Made for raylib 2.0</PackageReleaseNotes>
|
||||
<PackageTags>raylib csharp binding opengl gamedev</PackageTags>
|
||||
<RepositoryUrl>https://github.com/ChrisDill/Raylib-cs</RepositoryUrl>
|
||||
<Platforms>AnyCPU;x64;x86</Platforms>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
<Optimize>false</Optimize>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<Optimize>false</Optimize>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="System.Memory" Version="4.5.1" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.27703.2035
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Bindings", "Bindings\Bindings.csproj", "{9F30944C-415B-4763-91C7-81721117879D}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Test.NetCore", "Test.NetCore\Test.NetCore.csproj", "{1298EE9D-E480-4014-BED0-C7CFE94C4AD7}"
|
||||
EndProject
|
||||
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Examples", "Examples\Examples.shproj", "{36E54E2A-5899-4D4D-9D78-120DB1B4C7B2}"
|
||||
@ -29,18 +27,6 @@ Global
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{9F30944C-415B-4763-91C7-81721117879D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{9F30944C-415B-4763-91C7-81721117879D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{9F30944C-415B-4763-91C7-81721117879D}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{9F30944C-415B-4763-91C7-81721117879D}.Debug|x64.Build.0 = Debug|x64
|
||||
{9F30944C-415B-4763-91C7-81721117879D}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{9F30944C-415B-4763-91C7-81721117879D}.Debug|x86.Build.0 = Debug|x86
|
||||
{9F30944C-415B-4763-91C7-81721117879D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{9F30944C-415B-4763-91C7-81721117879D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{9F30944C-415B-4763-91C7-81721117879D}.Release|x64.ActiveCfg = Release|x64
|
||||
{9F30944C-415B-4763-91C7-81721117879D}.Release|x64.Build.0 = Release|x64
|
||||
{9F30944C-415B-4763-91C7-81721117879D}.Release|x86.ActiveCfg = Release|x86
|
||||
{9F30944C-415B-4763-91C7-81721117879D}.Release|x86.Build.0 = Release|x86
|
||||
{1298EE9D-E480-4014-BED0-C7CFE94C4AD7}.Debug|Any CPU.ActiveCfg = Debug|x64
|
||||
{1298EE9D-E480-4014-BED0-C7CFE94C4AD7}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{1298EE9D-E480-4014-BED0-C7CFE94C4AD7}.Debug|x64.Build.0 = Debug|x64
|
||||
|
@ -24,7 +24,16 @@
|
||||
<Optimize>false</Optimize>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Bindings\Bindings.csproj" />
|
||||
<Compile Remove="raylib-cs\**" />
|
||||
<EmbeddedResource Remove="raylib-cs\**" />
|
||||
<None Remove="raylib-cs\**" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\Bindings\Easings.cs" Link="Easings.cs" />
|
||||
<Compile Include="..\Bindings\Physac.cs" Link="Physac.cs" />
|
||||
<Compile Include="..\Bindings\Raygui.cs" Link="Raygui.cs" />
|
||||
<Compile Include="..\Bindings\Raylib.cs" Link="Raylib.cs" />
|
||||
<Compile Include="..\Bindings\Raymath.cs" Link="Raymath.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="..\Examples\Examples.projitems" Label="Shared" />
|
||||
<Import Project="..\Examples\Examples.projitems" Label="Shared" />
|
||||
|
@ -21,7 +21,11 @@
|
||||
<Optimize>false</Optimize>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Bindings\Bindings.csproj" />
|
||||
<Compile Include="..\Bindings\Easings.cs" Link="Easings.cs" />
|
||||
<Compile Include="..\Bindings\Physac.cs" Link="Physac.cs" />
|
||||
<Compile Include="..\Bindings\Raygui.cs" Link="Raygui.cs" />
|
||||
<Compile Include="..\Bindings\Raylib.cs" Link="Raylib.cs" />
|
||||
<Compile Include="..\Bindings\Raymath.cs" Link="Raymath.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.DotNet.ILCompiler" Version="1.0.0-alpha-27217-01" />
|
||||
|
@ -97,6 +97,21 @@
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\Bindings\Easings.cs">
|
||||
<Link>Easings.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Bindings\Physac.cs">
|
||||
<Link>Physac.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Bindings\Raygui.cs">
|
||||
<Link>Raygui.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Bindings\Raylib.cs">
|
||||
<Link>Raylib.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\Bindings\Raymath.cs">
|
||||
<Link>Raymath.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="RayForm.cs">
|
||||
@ -106,12 +121,6 @@
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Bindings\Bindings.csproj">
|
||||
<Project>{9f30944c-415b-4763-91c7-81721117879d}</Project>
|
||||
<Name>Bindings</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="System.Memory">
|
||||
<Version>4.5.1</Version>
|
||||
@ -120,6 +129,7 @@
|
||||
<ItemGroup>
|
||||
<Content Include="raylib-cs.ico" />
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<Import Project="..\Examples\Examples.projitems" Label="Shared" />
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<Target Name="AfterBuild">
|
||||
|
Loading…
x
Reference in New Issue
Block a user