Skip to content

Commit 8fc9fe1

Browse files
author
喻斌
committed
resolved #174
1 parent d2dd236 commit 8fc9fe1

File tree

3 files changed

+33
-4
lines changed

3 files changed

+33
-4
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,10 @@ src/CatLib.Core/bin/
66
src/CatLib.Core.NetStandard/bin/
77
src/CatLib.Core.NetStandard/obj/
88
TestResults/
9-
build/
9+
build/
10+
dist/dist/
11+
dist/*.meta
12+
dist/*.dll
13+
dist/*.md
14+
dist/README
15+
dist/LICENSE

dist/package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "com.catlib.core",
3+
"displayName" : "CatLib.Core",
4+
"version": "1.3.1",
5+
"description": "CatLib Core is dependency injection container",
6+
"license": "MIT",
7+
"homepage": "https://github.com/catlib/core",
8+
"keywords": [
9+
"catlib",
10+
"core",
11+
"unity",
12+
"container",
13+
"di",
14+
"ioc"
15+
],
16+
"category": "framework",
17+
"repository": {
18+
"type": "git",
19+
"url": "[email protected]:catlib/core.git"
20+
},
21+
"dependencies": {},
22+
"unity": "2017.1"
23+
}

src/CatLib.Core/CatLib.Core.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@
2727
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2828
<DebugType>pdbonly</DebugType>
2929
<Optimize>true</Optimize>
30-
<OutputPath>..\..\build\Net35\</OutputPath>
30+
<OutputPath>..\..\build\net35\</OutputPath>
3131
<DefineConstants>TRACE;CATLIB;CATLIB_PERFORMANCE</DefineConstants>
3232
<ErrorReport>prompt</ErrorReport>
3333
<WarningLevel>4</WarningLevel>
3434
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
35-
<DocumentationFile>..\..\build\Net35\CatLib.Core.xml</DocumentationFile>
35+
<DocumentationFile>..\..\build\net35\CatLib.Core.xml</DocumentationFile>
3636
</PropertyGroup>
3737
<ItemGroup>
3838
<Reference Include="System" />
39-
<Reference Include="System.Core" />
39+
<Reference Include="System.Core" />
4040
</ItemGroup>
4141
<ItemGroup>
4242
<Compile Include="CatLib\App.cs" />

0 commit comments

Comments
 (0)