Skip to content

Commit ba764d8

Browse files
[tool] create a list of classes
2 parents de7d772 + 6c64d05 commit ba764d8

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
# cpp-net-framework
22
An experimental .NET Framework for C++
33

4-
[![Build Status](https://travis-ci.org/mydeveloperday/cpp-net-framework.svg?branch=master)](https://travis-ci.org/mydeveloperday/cpp-net-framework)
5-
4+
[![Build Status](https://travis-ci.org/mydeveloperday/cpp-net-framework.svg?branch=master)](https://travis-ci.org/mydeveloperday/cpp-net-framework)
5+
<a href="https://ci.appveyor.com/project/mydeveloperday/cpp-net-framework">
6+
<img alt="AppVeyor Scan Build Status"
7+
src="https://ci.appveyor.com/api/projects/status/32r7s2skrgm9ubva?svg=true"/>
8+
</a>
69
<a href="https://scan.coverity.com/projects/mydeveloperday-cpp-net-framework">
710
<img alt="Coverity Scan Build Status"
811
src="https://scan.coverity.com/projects/7174/badge.svg"/>
912
</a>
1013

14+
15+
1116
## Introduction
1217

1318
cpp-net-framework is an experimental C++ implementation of the .NET Framework, its purpose is to bring the power of the .NET Framework for use within C++ applications.
@@ -47,6 +52,9 @@ limit the external dependencies (for now) purely from the aspect of being able t
4752

4853
The library will use STL underneath. Platform specifics should be pushed down to an OS layer (to be implemented), to keep #ifdef in the main code at a minimum
4954

55+
See what needs to be done
56+
file:///C:/Users/phoad107185/Desktop/NET_35_Namespaces_Poster_JAN08.pdf
57+
5058

5159
## Follow the discussion
5260

appveyor.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
install:
2+
- mkdir build
3+
- cd build
4+
- cmake ..
5+
- dir
6+
7+
platform:
8+
- win32
9+
10+
configuration:
11+
- Debug
12+
13+
build:
14+
project: C:/projects/cpp-net-framework/build/cpp-net-framework.sln
15+
verbosity: minimal
16+
17+
test_script:
18+
- echo "Running Tests"
19+
- ctest -VV

0 commit comments

Comments
 (0)