File tree Expand file tree Collapse file tree 3 files changed +58
-0
lines changed Expand file tree Collapse file tree 3 files changed +58
-0
lines changed Original file line number Diff line number Diff line change
1
+ image : Visual Studio 2017
2
+ configuration : Release
3
+ platform : Any CPU
4
+
5
+ before_build :
6
+ - cmd : dotnet restore
7
+
8
+ build :
9
+ project : container.sln
10
+ parallel : true
11
+ verbosity : minimal
12
+
13
+ before_test :
14
+ - choco install opencover.portable
15
+ - choco install codecov
16
+
17
+ test_script :
18
+ - OpenCover.Console.exe -register:user -target:"C:\Program Files\dotnet\dotnet.exe" -targetargs:"test"
19
+
20
+ after_test :
21
+ - codecov -f "results.xml"
22
+
23
+ artifacts :
24
+ - path : ' **\Unity.*.nupkg'
25
+ name : ' Unity'
Original file line number Diff line number Diff line change
1
+ ignore :
2
+ - " tests/*" # Ignore tests
3
+ - " src/Utility/*" # Ignore utilities
4
+ - " **/*.Designer.cs" # Ignore generated code
Original file line number Diff line number Diff line change
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
+
3
+ <PropertyGroup >
4
+ <TargetFrameworks >netstandard1.0;net47;net45;net40</TargetFrameworks >
5
+ <GeneratePackageOnBuild >false</GeneratePackageOnBuild >
6
+ <PackageId >Unity.Abstractions</PackageId >
7
+ <Description >Unity Public Abstractions</Description >
8
+ <Version >1.0.0-beta</Version >
9
+ <AssemblyVersion >1.0.0.0</AssemblyVersion >
10
+ <FileVersion >1.0.0.0</FileVersion >
11
+ <Copyright >Copyright © Microsoft.Practices.Unity 2017</Copyright >
12
+ <PackageProjectUrl >https://github.com/unitycontainer</PackageProjectUrl >
13
+ <RepositoryUrl >https://github.com/unitycontainer/abstractions</RepositoryUrl >
14
+ <PackageLicenseUrl >https://github.com/unitycontainer/abstractions/blob/master/LICENSE</PackageLicenseUrl >
15
+ <PackageIconUrl >https://avatars1.githubusercontent.com/u/12849707</PackageIconUrl >
16
+ <RepositoryType >git</RepositoryType >
17
+ <PackageReleaseNotes >This package is distributed as .NET Standard 1.0 package.</PackageReleaseNotes >
18
+ <Authors >Microsoft.Practices.Unity</Authors >
19
+ <Company >Microsoft.Practices.Unity</Company >
20
+ <RootNamespace >Unity</RootNamespace >
21
+ </PropertyGroup >
22
+
23
+ <PropertyGroup Condition =" Exists('..\..\package.snk')" >
24
+ <SignAssembly >true</SignAssembly >
25
+ <AssemblyOriginatorKeyFile >..\..\package.snk</AssemblyOriginatorKeyFile >
26
+ <DelaySign >false</DelaySign >
27
+ </PropertyGroup >
28
+
29
+ </Project >
You can’t perform that action at this time.
0 commit comments