/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
v2.0.3-alpha
src/oscript/oscript.csproj
38 строк
2 KB
EvilBeaver
Удален StandaloneRunner и функции сериализации модуля
22 авг 2021, 11:37
22 авг 2021, 11:37
fa217ae
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <Project Sdk="Microsoft.NET.Sdk"> <Import Project="$(MSBuildProjectDirectory)/../oscommon.targets" /> <PropertyGroup> <TargetFramework>net5.0</TargetFramework> <ApplicationIcon /> <OutputType>Exe</OutputType> <StartupObject>oscript.Program</StartupObject> <Platforms>x86;AnyCPU</Platforms> <Configurations>Debug;Release</Configurations> </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> <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>