Skip to content

Commit

Permalink
Merge pull request #21 from hadashiA/ku/support-2018
Browse files Browse the repository at this point in the history
Support Unity 2018.4
  • Loading branch information
hadashiA authored Jul 22, 2020
2 parents 0b045b4 + 3a6a4f2 commit 5cb8262
Show file tree
Hide file tree
Showing 8 changed files with 204 additions and 199 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- name: Create meta list
working-directory: VContainer
run: |
echo Assets/VContainer.meta >> metaList
echo Assets/VContainer/Runtime.meta >> metaList
find Assets/VContainer/Runtime -name \*.meta >> metaList
echo Assets/VContainer/Editor.meta >> metaList
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# VContainer

![](https://github.com/hadashiA/VContainer/workflows/Test/badge.svg)
[![Releases](https://img.shields.io/github/release/hadashiA/VContainer.svg)](https://github.com/hadashiA/VContainer/releases)
[![openupm](https://img.shields.io/npm/v/jp.hadashikick.vcontainer?label=openupm&registry_uri=https://package.openupm.com)](https://openupm.com/packages/jp.hadashikick.vcontainer/)
![](https://img.shields.io/badge/unity-2018.4%20or%20later-green.svg)
![](https://github.com/hadashiA/VContainer/workflows/Test/badge.svg)

**VContainer** is an DI (Dependency Injection) library running on Unity (Game Engine).

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "VContainer.Editor",
"references": [
"GUID:b0214a6008ed146ff8f122a6a9c2f6cc"
"VContainer"
],
"includePlatforms": [
"Editor"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
using System;
using UnityEngine;
#if UNITY_2019_3_OR_NEWER
using UnityEngine.LowLevel;
using UnityEngine.PlayerLoop;
// #if UNITY_EDITOR
// using UnityEditor;
// #endif
#else
using UnityEngine.Experimental.LowLevel;
using UnityEngine.Experimental.PlayerLoop;
#endif

namespace VContainer.Unity
{
Expand Down
10 changes: 5 additions & 5 deletions VContainer/Assets/VContainer/Tests/VContainer.Tests.asmdef
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "VContainer.Tests",
"references": [
"GUID:27619889b8ba8c24980f49ee34dbb44a",
"GUID:0acc523941302664db1f4e527237feb3",
"GUID:734d92eba21c94caba915361bd5ac177",
"GUID:b0214a6008ed146ff8f122a6a9c2f6cc"
"UnityEngine.TestRunner",
"UnityEditor.TestRunner",
"VContainer",
"GUID:734d92eba21c94caba915361bd5ac177"
],
"includePlatforms": [],
"excludePlatforms": [
Expand All @@ -27,4 +27,4 @@
}
],
"noEngineReferences": false
}
}
4 changes: 2 additions & 2 deletions VContainer/Assets/VContainer/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "jp.hadashikick.vcontainer",
"displayName": "VContainer",
"version": "0.2.0",
"unity": "2019.1",
"version": "0.2.1",
"unity": "2018.4",
"description": "Lightweight DI (Dependency Injection) Container for Unity.",
"keywords": ["DI", "Dependency Injection", "DI Container"],
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions VContainer/ProjectSettings/ProjectVersion.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
m_EditorVersion: 2019.4.1f1
m_EditorVersionWithRevision: 2019.4.1f1 (e6c045e14e4e)
m_EditorVersion: 2019.4.3f1
m_EditorVersionWithRevision: 2019.4.3f1 (f880dceab6fe)
370 changes: 185 additions & 185 deletions VContainer/VContainer.csproj

Large diffs are not rendered by default.

0 comments on commit 5cb8262

Please sign in to comment.