2025-07-02 10:32:56 +03:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
<RootNamespace>OneSwiss.OneScript</RootNamespace>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-09-08 20:24:15 +03:00
|
|
|
<ProjectReference Include="..\oneswiss-v8\oneswiss-v8.csproj"/>
|
2025-07-02 10:32:56 +03:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-09-08 20:24:15 +03:00
|
|
|
<Reference Include="OneScript.Core">
|
|
|
|
|
<HintPath>..\..\OneScript\src\oscript\bin\Release\net8.0\OneScript.Core.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="OneScript.DebugServices">
|
|
|
|
|
<HintPath>..\..\OneScript\src\oscript\bin\Release\net8.0\OneScript.DebugServices.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="OneScript.Language">
|
|
|
|
|
<HintPath>..\..\OneScript\src\oscript\bin\Release\net8.0\OneScript.Language.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="OneScript.StandardLibrary">
|
|
|
|
|
<HintPath>..\..\OneScript\src\oscript\bin\Release\net8.0\OneScript.StandardLibrary.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="oscript">
|
|
|
|
|
<HintPath>..\..\OneScript\src\oscript\bin\Release\net8.0\oscript.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="ScriptEngine">
|
|
|
|
|
<HintPath>..\..\OneScript\src\oscript\bin\Release\net8.0\ScriptEngine.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="ScriptEngine.HostedScript">
|
|
|
|
|
<HintPath>..\..\OneScript\src\oscript\bin\Release\net8.0\ScriptEngine.HostedScript.dll</HintPath>
|
|
|
|
|
</Reference>
|
2025-07-02 10:32:56 +03:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|