Skip to content

Commit

Permalink
SML 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mircearoata authored Apr 12, 2021
2 parents e406ca0 + 433d486 commit 028df7d
Show file tree
Hide file tree
Showing 1,836 changed files with 110,090 additions and 18,213 deletions.
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ Build/*/**
*_BuiltData.uasset

# Configuration files generated by the Editor
Plugins/*/Saved/*
Saved/*

# Compiled source files for the engine to use
Expand All @@ -64,11 +65,20 @@ Plugins/*/Intermediate/*

# Cache files for the editor to use
DerivedDataCache/*
.idea

# Wwise
*_WwiseProject/*
Plugins/Wwise/*
Plugins/Developer/RiderLink/*

# Alpakit Mods folder
Mods/*
*.pak
Configs/*

*.pak

Plugins/*
!Plugins/SML/
!Plugins/SMLEditor/
!Plugins/ExampleMod/
Binary file added BlankImage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
96 changes: 96 additions & 0 deletions Build/Alpakit.Automation/Alpakit.Automation.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{A777BF44-017F-4E69-916A-A62D06D63556}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Alpakit.Automation</RootNamespace>
<AssemblyName>Alpakit.Automation</AssemblyName>
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Scripts\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>Scripts\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Development|AnyCPU' ">
<OutputPath>Scripts\</OutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="System.IO.Compression.FileSystem" />
</ItemGroup>
<ItemGroup>
<Compile Include="PackagePlugin.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>

<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="Alpakit.Automation.csproj.props" Condition="Exists('Alpakit.Automation.csproj.props')" />

<ItemGroup>
<ProjectReference Include="$(EngineDir)\Source\Programs\DotNETCommon\DotNETUtilities\DotNETUtilities.csproj">
<Project>{5D7D66E8-8C76-4AF9-B3EC-2EF03421D730}</Project>
<Name>DotNETUtilities</Name>
<Private>false</Private>
</ProjectReference>
<ProjectReference Include="$(EngineDir)\Source\Programs\AutomationTool\AutomationUtils\AutomationUtils.Automation.csproj">
<Project>{2c96a7f2-b1a3-4258-8e0a-e588ff41a53e}</Project>
<Name>AutomationUtils.Automation</Name>
<Private>false</Private>
</ProjectReference>
<ProjectReference Include="$(EngineDir)\Source\Programs\AutomationTool\Scripts\AutomationScripts.Automation.csproj">
<Project>{8aa00d65-0954-4a27-ac0d-fb8b1106120f}</Project>
<Name>AutomationScripts.Automation</Name>
<Private>false</Private>
</ProjectReference>
<ProjectReference Include="$(EngineDir)\Source\Programs\UnrealBuildTool\UnrealBuildTool.csproj">
<Project>{fd7c5e1a-cfe4-4fd5-a525-1eb1599a39ac}</Project>
<Name>UnrealBuildTool</Name>
<Private>false</Private>
</ProjectReference>
<ProjectReference Include="$(EngineDir)\Source\Programs\AutomationTool\AllDesktop\AllDesktop.Automation.csproj">
<Project>{a9cd1a06-764a-4c53-86ce-2f34b94f0283}</Project>
<Name>AllDesktop.Automation</Name>
<Private>false</Private>
</ProjectReference>
<ProjectReference Include="$(EngineDir)\Source\Programs\AutomationTool\BuildGraph\BuildGraph.Automation.csproj">
<Project>{a002361e-37f9-4124-af82-cf0d393cb928}</Project>
<Name>BuildGraph.Automation</Name>
<Private>false</Private>
</ProjectReference>
<ProjectReference Include="$(EngineDir)\Source\Programs\AutomationTool\Gauntlet\Gauntlet.Automation.csproj">
<Project>{767b4f85-ab56-4b00-a033-04c7600acc3d}</Project>
<Name>Gauntlet.Automation</Name>
<Private>false</Private>
</ProjectReference>
<ProjectReference Include="$(EngineDir)\Source\Programs\AutomationTool\Win\Win.Automation.csproj">
<Project>{6f6f8e5b-53ca-4c9f-a696-96aa9b8fb128}</Project>
<Name>Win.Automation</Name>
<Private>false</Private>
</ProjectReference>
</ItemGroup>
</Project>
19 changes: 19 additions & 0 deletions Build/Alpakit.Automation/Alpakit.Automation.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Alpakit.Automation", "Alpakit.Automation.csproj", "{A777BF44-017F-4E69-916A-A62D06D63556}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
Development|Any CPU = Development|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A777BF44-017F-4E69-916A-A62D06D63556}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A777BF44-017F-4E69-916A-A62D06D63556}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A777BF44-017F-4E69-916A-A62D06D63556}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A777BF44-017F-4E69-916A-A62D06D63556}.Release|Any CPU.Build.0 = Release|Any CPU
{A777BF44-017F-4E69-916A-A62D06D63556}.Development|Any CPU.ActiveCfg = Development|Any CPU
{A777BF44-017F-4E69-916A-A62D06D63556}.Development|Any CPU.Build.0 = Development|Any CPU
EndGlobalSection
EndGlobal
Loading

0 comments on commit 028df7d

Please sign in to comment.