mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-15 02:42:46 +01:00
48 lines
1.7 KiB
XML
48 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<Platforms>x86</Platforms>
|
|
<RuntimeIdentifier>win7-x86</RuntimeIdentifier>
|
|
<LangVersion>10</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<RootNamespace>TweetDuck.Browser</RootNamespace>
|
|
<AssemblyName>TweetDuck.Browser</AssemblyName>
|
|
<ApplicationIcon>..\TweetDuck\Resources\Images\icon.ico</ApplicationIcon>
|
|
<StartupObject />
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<SelfContained>true</SelfContained>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>none</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CefSharp.WinForms.NETCore" Version="105.3.330" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\..\Version.cs" Link="Version.cs" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="CopyResources" AfterTargets="Build">
|
|
<Exec Command="call "$(DevEnvDir)\..\..\VC\Auxiliary\Build\vcvars32.bat" & editbin /largeaddressaware /TSAWARE "$(TargetDir)TweetDuck.Browser.exe"" ContinueOnError="false" />
|
|
</Target>
|
|
|
|
</Project>
|