mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
31 lines
971 B
XML
31 lines
971 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0-windows</TargetFramework>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<Platforms>x86</Platforms>
|
|
<RuntimeIdentifier>win7-x86</RuntimeIdentifier>
|
|
<LangVersion>11</LangVersion>
|
|
<Nullable>disable</Nullable>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<RootNamespace>System</RootNamespace>
|
|
<AssemblyName>TweetLib.WinForms.Legacy</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\..\Version.cs" Link="Version.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|