/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
v2.0.2
src/oscript/oscript.csproj
45 строк
2 KB
akpaevj
Фикс #1418
05 авг 2024, 22:06
05 авг 2024, 22:06
c070a52
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <Project Sdk="Microsoft.NET.Sdk"> <Import Project="$(MSBuildProjectDirectory)/../oscommon.targets" /> <PropertyGroup> <TargetFramework>$(TargetFrameworkVersion)</TargetFramework> <ApplicationIcon /> <OutputType>Exe</OutputType> <StartupObject>oscript.Program</StartupObject> <Platforms>x86;AnyCPU</Platforms> <Configurations>Debug;Release;LinuxDebug</Configurations> <RollForward>Major</RollForward> <GenerateRuntimeConfigDevFile>true</GenerateRuntimeConfigDevFile> </PropertyGroup> <PropertyGroup> <AssemblyTitle>1Script console host</AssemblyTitle> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'"> <DocumentationFile>bin\x86\Debug\net452\oscript.xml</DocumentationFile> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <DebugSymbols>false</DebugSymbols> <Optimize>false</Optimize> <OutputPath>bin\x86\Debug</OutputPath> <WarningLevel>4</WarningLevel> <PlatformTarget>x86</PlatformTarget> <IntermediateOutputPath>obj\x86\Debug</IntermediateOutputPath> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)' == 'LinuxDebug' "> <DebugSymbols Condition=" '$(DebugSymbols)' == '' ">true</DebugSymbols> <Optimize Condition=" '$(Optimize)' == '' ">false</Optimize> </PropertyGroup> <ItemGroup> <ProjectReference Include="..\OneScript.DebugProtocol\OneScript.DebugProtocol.csproj" /> <ProjectReference Include="..\OneScript.DebugServices\OneScript.DebugServices.csproj" /> <ProjectReference Include="..\ScriptEngine.HostedScript\ScriptEngine.HostedScript.csproj" /> <ProjectReference Include="..\ScriptEngine\ScriptEngine.csproj" /> <ProjectReference Include="..\OneScript.Language\OneScript.Language.csproj" /> <ProjectReference Include="..\OneScript.StandardLibrary\OneScript.StandardLibrary.csproj" /> </ItemGroup> </Project>