ShareX/ShareX.UploadersLib/ShareX.UploadersLib.csproj

64 lines
2.7 KiB
XML
Raw Normal View History

2024-01-21 12:08:54 +13:00
<Project Sdk="Microsoft.NET.Sdk">
2013-11-03 23:53:49 +13:00
<PropertyGroup>
2024-01-21 12:08:54 +13:00
<TargetFramework>net48</TargetFramework>
2013-11-03 23:53:49 +13:00
<OutputType>Library</OutputType>
2024-01-21 12:08:54 +13:00
<UseWindowsForms>true</UseWindowsForms>
2013-11-03 23:53:49 +13:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
2013-11-03 23:53:49 +13:00
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
2015-09-06 20:19:09 +12:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Steam|AnyCPU'">
<OutputPath>bin\Steam\</OutputPath>
2017-04-21 10:59:19 +12:00
<Optimize>true</Optimize>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'MicrosoftStore|AnyCPU' ">
<OutputPath>bin\MicrosoftStore\</OutputPath>
<DefineConstants>TRACE;MicrosoftStore</DefineConstants>
2015-09-06 20:19:09 +12:00
<Optimize>true</Optimize>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'MicrosoftStoreDebug|AnyCPU' ">
2017-04-22 03:22:15 +12:00
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\MicrosoftStoreDebug\</OutputPath>
<DefineConstants>TRACE;DEBUG;MicrosoftStore</DefineConstants>
2017-04-22 03:22:15 +12:00
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
2013-11-03 23:53:49 +13:00
<ItemGroup>
<Reference Include="System.Design" />
<Reference Include="System.ServiceModel.Web" />
<Reference Include="System.Web" />
</ItemGroup>
<ItemGroup>
2024-01-21 12:08:54 +13:00
<ProjectReference Include="..\ShareX.HelpersLib\ShareX.HelpersLib.csproj" />
2013-11-03 23:53:49 +13:00
</ItemGroup>
<ItemGroup>
2014-02-15 06:02:56 +13:00
<EmbeddedResource Include="APIKeys\jira_sharex.pfx" />
2018-04-20 17:33:58 +12:00
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentFTP">
2024-01-05 13:46:53 +13:00
<Version>49.0.1</Version>
</PackageReference>
<PackageReference Include="MegaApiClient">
2022-12-03 16:46:47 +13:00
<Version>1.10.3</Version>
</PackageReference>
<PackageReference Include="Newtonsoft.Json">
2023-03-30 17:51:06 +13:00
<Version>13.0.3</Version>
</PackageReference>
<PackageReference Include="SSH.NET">
2024-01-05 13:46:53 +13:00
<Version>2023.0.1</Version>
</PackageReference>
</ItemGroup>
2022-12-08 00:58:08 +13:00
<ItemGroup>
<Content Include="Resources\OAuthCallbackPage.html" />
</ItemGroup>
2016-03-22 06:56:36 +13:00
</Project>