Skip to content

Commit 20729d9

Browse files
authored
Merge Develop branch (#159)
***NO_CI***
2 parents ddf0cfc + da265d9 commit 20729d9

File tree

1,827 files changed

+322419
-212
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,827 files changed

+322419
-212
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
# Visual Studio
22
.vs/
3+
[Dd]ebug/
4+
[Dd]ebugPublic/
5+
[Rr]elease/
6+
[Rr]eleases/
7+
x64/
8+
x86/
9+
bld/
310
[Bb]in/
411
[Oo]bj/
12+
[Ll]og/
513
packages/
614
*.suo
715
*.user

.gitmodules

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "nf-interpreter"]
2-
path = nf-interpreter
2+
path = source/native/nf-interpreter
33
url = https://github.com/nanoframework/nf-interpreter
4+
[submodule "MetadataProcessor.Tests/mscorlib"]
5+
path = MetadataProcessor.Tests/mscorlib
6+
url = https://github.com/nanoframework/lib-CoreLibrary

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Contributing to **nanoFramework**
22

3-
Please refer to the contribution guidelines at the Home repository [here](https://github.com/nanoframework/Home/blob/master/CONTRIBUTING.md).
3+
Please refer to the contribution guidelines at the Home repository [here](https://github.com/nanoframework/Home/blob/main/CONTRIBUTING.md).

LICENSE renamed to LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 nanoFramework contributors
3+
Copyright (c) .NET Foundation and Contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="$(VisualStudioVersion)" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6+
<ProjectGuid>{A9E02E14-7321-4B12-8AB5-9A0408ED8FD0}</ProjectGuid>
7+
<OutputType>Exe</OutputType>
8+
<RootNamespace>nanoFramework.Tools.MetadataProcessor.Console</RootNamespace>
9+
<AssemblyName>nanoFramework.Tools.MetadataProcessor</AssemblyName>
10+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
11+
<TargetFrameworkProfile />
12+
<NuGetPackageImportStamp>
13+
</NuGetPackageImportStamp>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<DebugSymbols>true</DebugSymbols>
17+
<DebugType>full</DebugType>
18+
<Optimize>false</Optimize>
19+
<OutputPath>bin\Debug</OutputPath>
20+
<DefineConstants>DEBUG;</DefineConstants>
21+
<ErrorReport>prompt</ErrorReport>
22+
<WarningLevel>4</WarningLevel>
23+
<Externalconsole>true</Externalconsole>
24+
</PropertyGroup>
25+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26+
<DebugType>full</DebugType>
27+
<Optimize>true</Optimize>
28+
<OutputPath>bin\Release</OutputPath>
29+
<ErrorReport>prompt</ErrorReport>
30+
<WarningLevel>4</WarningLevel>
31+
<Externalconsole>true</Externalconsole>
32+
</PropertyGroup>
33+
<PropertyGroup>
34+
<SignAssembly>false</SignAssembly>
35+
</PropertyGroup>
36+
<PropertyGroup>
37+
<AssemblyOriginatorKeyFile>
38+
</AssemblyOriginatorKeyFile>
39+
</PropertyGroup>
40+
<ItemGroup>
41+
<Reference Include="Microsoft.CSharp" />
42+
<Reference Include="System" />
43+
<Reference Include="System.XML" />
44+
</ItemGroup>
45+
<ItemGroup>
46+
<Compile Include="Program.cs" />
47+
<Compile Include="Properties\AssemblyInfo.cs" />
48+
</ItemGroup>
49+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
50+
<ItemGroup>
51+
<None Include="app.config" />
52+
</ItemGroup>
53+
<ItemGroup>
54+
<ProjectReference Include="..\MetadataProcessor.Core\MetadataProcessor.Core.csproj">
55+
<Project>{e32f7d15-2499-440c-8026-4d5ee1c5ec3a}</Project>
56+
<Name>MetadataProcessor.Core</Name>
57+
</ProjectReference>
58+
</ItemGroup>
59+
<ItemGroup>
60+
<PackageReference Include="Mono.Cecil">
61+
<Version>0.11.4</Version>
62+
</PackageReference>
63+
</ItemGroup>
64+
</Project>

0 commit comments

Comments
 (0)