|
|
|
@ -1,5 +1,9 @@ |
|
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
|
|
|
<PropertyGroup> |
|
|
|
|
<Configuration Condition="'$(Configuration)' == '' And '$(OS)' != 'Windows_NT'">Ubuntu_Debug</Configuration> |
|
|
|
|
<Configuration Condition="'$(Configuration)' == ''">Windows_Debug</Configuration> |
|
|
|
|
</PropertyGroup> |
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" /> |
|
|
|
|
<PropertyGroup> |
|
|
|
|
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion> |
|
|
|
@ -8,7 +12,8 @@ |
|
|
|
|
<RootNamespace>ImGuiNET</RootNamespace> |
|
|
|
|
<AssemblyName>SampleGUIProgram</AssemblyName> |
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|
|
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> |
|
|
|
|
<NuGetTargetMoniker>.NETCoreApp,Version=v1.0</NuGetTargetMoniker> |
|
|
|
|
<BaseNuGetRuntimeIdentifier Condition="'$(OSTarget)' == 'Windows_NT'">win7</BaseNuGetRuntimeIdentifier> |
|
|
|
|
</PropertyGroup> |
|
|
|
|
<ItemGroup> |
|
|
|
|
<Compile Include="Program.cs" /> |
|
|
|
@ -24,9 +29,6 @@ |
|
|
|
|
<None Include="project.json" /> |
|
|
|
|
</ItemGroup> |
|
|
|
|
<ItemGroup> |
|
|
|
|
<Reference Include="$(DepsDir)OpenTK\OpenTK.dll"> |
|
|
|
|
<Private>True</Private> |
|
|
|
|
</Reference> |
|
|
|
|
<ProjectReference Include="../ImGui.NET/ImGui.NET.csproj"> |
|
|
|
|
<Name>ImGUI.NET</Name> |
|
|
|
|
</ProjectReference> |
|
|
|
@ -36,10 +38,6 @@ |
|
|
|
|
<Link>cimgui.dll</Link> |
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
|
|
|
|
</Content> |
|
|
|
|
<Content Include="..\..\deps\cimgui\win7-x64\cimgui.pdb"> |
|
|
|
|
<Link>cimgui.pdb</Link> |
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
|
|
|
|
</Content> |
|
|
|
|
</ItemGroup> |
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" /> |
|
|
|
|
</Project> |