Merge pull request #83 from knocte/msbuild_tweaks
Various tweaks and updates to the .csproj files
This commit is contained in:
commit
21ef50ec48
5 changed files with 23 additions and 3 deletions
|
@ -21,6 +21,7 @@
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<PlatformTarget>x86</PlatformTarget>
|
<PlatformTarget>x86</PlatformTarget>
|
||||||
<ConsolePause>false</ConsolePause>
|
<ConsolePause>false</ConsolePause>
|
||||||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||||
<DebugType>none</DebugType>
|
<DebugType>none</DebugType>
|
||||||
|
@ -30,6 +31,7 @@
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<PlatformTarget>x86</PlatformTarget>
|
<PlatformTarget>x86</PlatformTarget>
|
||||||
<ConsolePause>false</ConsolePause>
|
<ConsolePause>false</ConsolePause>
|
||||||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<ProjectGuid>{80E73555-2284-40DC-9068-9A40B7359B0C}</ProjectGuid>
|
<ProjectGuid>{80E73555-2284-40DC-9068-9A40B7359B0C}</ProjectGuid>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<RootNamespace>generator</RootNamespace>
|
<RootNamespace>generator</RootNamespace>
|
||||||
<AssemblyName>generator</AssemblyName>
|
<AssemblyName>gapi_codegen</AssemblyName>
|
||||||
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||||
|
@ -105,5 +105,6 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -221,12 +221,10 @@
|
||||||
<Compile Include="generated\IOStream.cs" />
|
<Compile Include="generated\IOStream.cs" />
|
||||||
<Compile Include="generated\IOStreamAdapter.cs" />
|
<Compile Include="generated\IOStreamAdapter.cs" />
|
||||||
<Compile Include="generated\IOStreamSpliceFlags.cs" />
|
<Compile Include="generated\IOStreamSpliceFlags.cs" />
|
||||||
<Compile Include="generated\Icon.cs" />
|
|
||||||
<Compile Include="generated\IconAdapter.cs" />
|
<Compile Include="generated\IconAdapter.cs" />
|
||||||
<Compile Include="generated\IncomingHandler.cs" />
|
<Compile Include="generated\IncomingHandler.cs" />
|
||||||
<Compile Include="generated\InetAddress.cs" />
|
<Compile Include="generated\InetAddress.cs" />
|
||||||
<Compile Include="generated\InetSocketAddress.cs" />
|
<Compile Include="generated\InetSocketAddress.cs" />
|
||||||
<Compile Include="generated\Initable.cs" />
|
|
||||||
<Compile Include="generated\InitableAdapter.cs" />
|
<Compile Include="generated\InitableAdapter.cs" />
|
||||||
<Compile Include="generated\InputStream.cs" />
|
<Compile Include="generated\InputStream.cs" />
|
||||||
<Compile Include="generated\InputVector.cs" />
|
<Compile Include="generated\InputVector.cs" />
|
||||||
|
@ -360,6 +358,14 @@
|
||||||
<Compile Include="generated\ITlsClientConnection.cs" />
|
<Compile Include="generated\ITlsClientConnection.cs" />
|
||||||
<Compile Include="generated\ITlsServerConnection.cs" />
|
<Compile Include="generated\ITlsServerConnection.cs" />
|
||||||
<Compile Include="generated\IVolume.cs" />
|
<Compile Include="generated\IVolume.cs" />
|
||||||
|
<Compile Include="generated\IConverter.cs" />
|
||||||
|
<Compile Include="generated\IDrive.cs" />
|
||||||
|
<Compile Include="generated\IFile.cs" />
|
||||||
|
<Compile Include="generated\IFileDescriptorBased.cs" />
|
||||||
|
<Compile Include="generated\IIcon.cs" />
|
||||||
|
<Compile Include="generated\IInitable.cs" />
|
||||||
|
<Compile Include="generated\ILoadableIcon.cs" />
|
||||||
|
<Compile Include="generated\IMount.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\glib\glib.csproj">
|
<ProjectReference Include="..\glib\glib.csproj">
|
||||||
|
|
|
@ -94,6 +94,13 @@
|
||||||
<Compile Include="DateTime.cs" />
|
<Compile Include="DateTime.cs" />
|
||||||
<Compile Include="TimeVal.cs" />
|
<Compile Include="TimeVal.cs" />
|
||||||
<Compile Include="TimeZone.cs" />
|
<Compile Include="TimeZone.cs" />
|
||||||
|
<Compile Include="PollFD.cs" />
|
||||||
|
<Compile Include="SourceCallbackFuncs.cs" />
|
||||||
|
<Compile Include="SourceDummyMarshal.cs" />
|
||||||
|
<Compile Include="SourceFunc.cs" />
|
||||||
|
<Compile Include="SourceFuncs.cs" />
|
||||||
|
<Compile Include="GLibSharp.SourceDummyMarshalNative.cs" />
|
||||||
|
<Compile Include="GLibSharp.SourceFuncNative.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
|
|
|
@ -943,5 +943,9 @@
|
||||||
<Project>{42FE871A-D8CF-4B29-9AFF-B02454E6C976}</Project>
|
<Project>{42FE871A-D8CF-4B29-9AFF-B02454E6C976}</Project>
|
||||||
<Name>atk</Name>
|
<Name>atk</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
|
<ProjectReference Include="..\cairo\cairo.csproj">
|
||||||
|
<Project>{364577DB-9728-4951-AC2C-EDF7A6FCC09D}</Project>
|
||||||
|
<Name>cairo</Name>
|
||||||
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
Loading…
Reference in a new issue