-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBytewizer.NanoCLR.DependencyInjection.nfproj
More file actions
78 lines (78 loc) · 4.38 KB
/
Copy pathBytewizer.NanoCLR.DependencyInjection.nfproj
File metadata and controls
78 lines (78 loc) · 4.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="Globals">
<NanoFrameworkProjectSystemPath>$(MSBuildExtensionsPath)\nanoFramework\v1.0\</NanoFrameworkProjectSystemPath>
</PropertyGroup>
<Import Project="$(NanoFrameworkProjectSystemPath)NFProjectSystem.Default.props" Condition="Exists('$(NanoFrameworkProjectSystemPath)NFProjectSystem.Default.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectTypeGuids>{11A8DD76-328B-46DF-9F39-F559912D0360};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<ProjectGuid>{63E90A00-3EB9-4573-B604-CCD025D88C8C}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<FileAlignment>512</FileAlignment>
<RootNamespace>Bytewizer.NanoCLR.DependencyInjection</RootNamespace>
<AssemblyName>Bytewizer.NanoCLR.DependencyInjection</AssemblyName>
<TargetFrameworkVersion>v1.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup>
<DefineConstants>NanoCLR</DefineConstants>
<AssemblyProduct>NanoCLR</AssemblyProduct>
<DocumentationFile>bin\$(Configuration)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<Import Project="$(NanoFrameworkProjectSystemPath)NFProjectSystem.props" Condition="Exists('$(NanoFrameworkProjectSystemPath)NFProjectSystem.props')" />
<ItemGroup>
<Compile Include="..\Bytewizer.TinyCLR.DependencyInjection\DependencyInjection\ActivatorUtilities.cs">
<Link>DependencyInjection\ActivatorUtilities.cs</Link>
</Compile>
<Compile Include="..\Bytewizer.TinyCLR.DependencyInjection\DependencyInjection\ServiceCollection.cs">
<Link>DependencyInjection\ServiceCollection.cs</Link>
</Compile>
<Compile Include="..\Bytewizer.TinyCLR.DependencyInjection\DependencyInjection\ServiceCollectionContainerBuilderExtensions.cs">
<Link>DependencyInjection\ServiceCollectionContainerBuilderExtensions.cs</Link>
</Compile>
<Compile Include="..\Bytewizer.TinyCLR.DependencyInjection\DependencyInjection\ServiceProvider.cs">
<Link>DependencyInjection\ServiceProvider.cs</Link>
</Compile>
<Compile Include="..\Bytewizer.TinyCLR.DependencyInjection\DependencyInjection\ServiceProviderEngine.cs">
<Link>DependencyInjection\ServiceProviderEngine.cs</Link>
</Compile>
<Compile Include="..\Bytewizer.TinyCLR.DependencyInjection\DependencyInjection\ServiceProviderOptions.cs">
<Link>DependencyInjection\ServiceProviderOptions.cs</Link>
</Compile>
<Compile Include="..\Bytewizer.TinyCLR.DependencyInjection\DependencyInjection\TypeExtensions.cs">
<Link>DependencyInjection\TypeExtensions.cs</Link>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="DependencyInjection\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\core\Bytewizer.NanoCLR.Core\Bytewizer.NanoCLR.Core.nfproj" />
<ProjectReference Include="..\Bytewizer.NanoCLR.DependencyInjection.Abstractions\Bytewizer.NanoCLR.DependencyInjection.Abstractions.nfproj" />
</ItemGroup>
<ItemGroup>
<None Include="Bytewizer.NanoCLR.DependencyInjection.nuspec" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Reference Include="mscorlib">
<HintPath>..\..\packages\nanoFramework.CoreLibrary.1.15.5\lib\mscorlib.dll</HintPath>
</Reference>
</ItemGroup>
<Import Project="$(NanoFrameworkProjectSystemPath)NFProjectSystem.CSharp.targets" Condition="Exists('$(NanoFrameworkProjectSystemPath)NFProjectSystem.CSharp.targets')" />
<ProjectExtensions>
<ProjectCapabilities>
<ProjectConfigurationsDeclaredAsItems />
</ProjectCapabilities>
</ProjectExtensions>
<Target Name="Pack" DependsOnTargets="Build;">
<PropertyGroup>
<NuGetExePath Condition="'$(NuGetExePath)' == ''">nuget.exe</NuGetExePath>
<NuspecPath>$([System.IO.Path]::Combine($(BaseDir), "$(ProjectName).nuspec"))</NuspecPath>
</PropertyGroup>
<Exec WorkingDirectory="$(BaseDir)" Command="$(NuGetExePath) pack $(NuspecPath) -OutputDirectory $(PackageOutputPath) -Version $(Version) -Properties id=$(AssemblyName);configuration=$(Configuration) -Symbols -SymbolPackageFormat snupkg" />
</Target>
</Project>