mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-22 19:25:42 +00:00
7ff80bcc8f
Spinner was not spining - should use SetValue, not SetValues. Also fixed sln - VS2019 not want to open sln by double click in explorer - added empty line. Also fixed sample project - VS2019 not showing all sources.
34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<OutputPath>..\..\BuildOutput\Samples</OutputPath>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Remove="**\*.glade" />
|
|
<EmbeddedResource Include="**\*.glade">
|
|
<LogicalName>%(Filename)%(Extension)</LogicalName>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Testpic.png">
|
|
<LogicalName>Testpic</LogicalName>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Sections\**\*.cs">
|
|
<LogicalName>GtkSharp.Samples.%(Filename).cs</LogicalName>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Libs\AtkSharp\AtkSharp.csproj" />
|
|
<ProjectReference Include="..\Libs\CairoSharp\CairoSharp.csproj" />
|
|
<ProjectReference Include="..\Libs\GdkSharp\GdkSharp.csproj" />
|
|
<ProjectReference Include="..\Libs\GioSharp\GioSharp.csproj" />
|
|
<ProjectReference Include="..\Libs\GLibSharp\GLibSharp.csproj" />
|
|
<ProjectReference Include="..\Libs\GtkSharp\GtkSharp.csproj" />
|
|
<ProjectReference Include="..\Libs\PangoSharp\PangoSharp.csproj" />
|
|
<ProjectReference Include="..\Libs\GtkSourceSharp\GtkSourceSharp.csproj" />
|
|
<ProjectReference Include="..\Libs\WebkitGtkSharp\WebkitGtkSharp.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|