/
dikbsd
/
SharpFBTools
Обзор
Документация
Войти
/
dikbsd
/
SharpFBTools
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
v4.65
Source/Main/SharpFBTools.csproj
110 строк
5 KB
Vadim Kuznetsov (dikbsd)
Портирование проекта на .Net 5.
03 сен 2021, 11:45
03 сен 2021, 11:45
0a4c470
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net5.0-windows</TargetFramework> <OutputType>WinExe</OutputType> <RootNamespace>Main</RootNamespace> <ApplicationIcon>..\..\Images\app.ico</ApplicationIcon> <SourceAnalysisOverrideSettingsFile>C:\Documents and Settings\VadimK\Application Data\ICSharpCode/SharpDevelop3.0\Settings.SourceAnalysis</SourceAnalysisOverrideSettingsFile> <NoStdLib>False</NoStdLib> <NoWin32Manifest>False</NoWin32Manifest> <DelaySign>False</DelaySign> <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <IntermediateOutputPath>..\..\..\..\MSVisualStudioBuild\SharpFBTools\obj\$(Configuration)\</IntermediateOutputPath> <RunCodeAnalysis>False</RunCodeAnalysis> <IsWebBootstrapper>false</IsWebBootstrapper> <PublishUrl>publish\</PublishUrl> <Install>true</Install> <InstallFrom>Disk</InstallFrom> <UpdateEnabled>false</UpdateEnabled> <UpdateMode>Foreground</UpdateMode> <UpdateInterval>7</UpdateInterval> <UpdateIntervalUnits>Days</UpdateIntervalUnits> <UpdatePeriodically>false</UpdatePeriodically> <UpdateRequired>false</UpdateRequired> <MapFileExtensions>true</MapFileExtensions> <ApplicationRevision>0</ApplicationRevision> <ApplicationVersion>1.0.0.%2a</ApplicationVersion> <UseApplicationTrust>false</UseApplicationTrust> <BootstrapperEnabled>true</BootstrapperEnabled> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> <UseWindowsForms>true</UseWindowsForms> <ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets> <OutputPath>..\..\..\..\MSVisualStudioBuild\SharpFBTools\bin\Release\</OutputPath> <OutputPath>..\..\..\..\MSVisualStudioBuild\SharpFBTools\bin\Debug\</OutputPath> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> <OutputPath>..\..\..\..\MSVisualStudioBuild\SharpFBTools\bin\Debug\</OutputPath> <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> <BaseIntermediateOutputPath>..\..\..\..\MSVisualStudioBuild\SharpFBTools\obj\</BaseIntermediateOutputPath> <StartAction>Project</StartAction> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)' == 'Release' "> <OutputPath>..\..\..\..\MSVisualStudioBuild\SharpFBTools\bin\Release\</OutputPath> <DebugType>None</DebugType> <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> <BaseIntermediateOutputPath>..\..\..\..\MSVisualStudioBuild\SharpFBTools\obj\</BaseIntermediateOutputPath> <StartAction>Project</StartAction> </PropertyGroup> <PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' "> <RegisterForComInterop>False</RegisterForComInterop> <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies> <BaseAddress>4194304</BaseAddress> <FileAlignment>4096</FileAlignment> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|64bit'"> <OutputPath>..\..\..\..\MSVisualStudioBuild\SharpFBTools\bin\Release\</OutputPath> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|64bit'"> <OutputPath>..\..\..\..\MSVisualStudioBuild\SharpFBTools\bin\Debug\</OutputPath> </PropertyGroup> <ItemGroup> <Reference Include="ICSharpCode.SharpZipLib"> <HintPath>..\SharpZipLib\ICSharpCode.SharpZipLib.dll</HintPath> </Reference> <Reference Update="System.Core"> <RequiredTargetFramework>3.5</RequiredTargetFramework> </Reference> <Reference Include="System.Data.Linq"> <RequiredTargetFramework>3.5</RequiredTargetFramework> </Reference> <Reference Update="System.Xml.Linq"> <RequiredTargetFramework>3.5</RequiredTargetFramework> </Reference> </ItemGroup> <ItemGroup> <Compile Update="Tools\SFBTpAbout.cs"> <SubType>UserControl</SubType> </Compile> <Compile Update="Tools\SFBTpArchiveManager.cs"> <SubType>UserControl</SubType> </Compile> <Compile Update="Tools\SFBTpFB2Corrector.cs"> <SubType>UserControl</SubType> </Compile> <Compile Update="Tools\SFBTpFB2Dublicator.cs"> <SubType>UserControl</SubType> </Compile> <Compile Update="Tools\SFBTpSorter.cs"> <SubType>UserControl</SubType> </Compile> </ItemGroup> <ItemGroup> <ProjectReference Include="..\Core\Core.csproj" /> <ProjectReference Include="..\Options\Options.csproj" /> <ProjectReference Include="..\Settings\Settings.csproj" /> </ItemGroup> <ItemGroup> <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> <Visible>False</Visible> <ProductName>.NET Framework 3.5 SP1</ProductName> <Install>false</Install> </BootstrapperPackage> </ItemGroup> <ItemGroup> <Folder Include="Properties\" /> </ItemGroup> <ItemGroup> <PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> <PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" /> </ItemGroup> </Project>