net开源项目

1 以色列 特思开源软件 http://cn.tersus.com/#Id=3924

2 开源社区 http://www.ctochina.net/

 

.NET开源项目链接 http://www.cnblogs.com/dustinyang/articles/361479.html
项目网址简介
Rainbowhttp://www.rainbowportal.net/ 
http://sourceforge.net/projects/rainbowportal/
The Rainbow project is an open source initiative to build a comprehensive content management system using Microsoft's ASP.NET and C# technologies.
Data Access Application Blockhttp://www.gotdotnet.com/workspaces/workspace.aspx?id=c20d12b0-af52-402b-9b7c-aaeb21d1f431 
DotNetNukehttp://sourceforge.net/projects/dnn/ 
Irishttp://marshine.nease.net/myprjs/iris/overview.ssiIris是为了处理Web页面装饰和布局管理的框架,它的设计思想基于GoF 的decoraotr设计模式。Iris分离页面正文和布局装饰的部分,使得Web页面更容易被测试和维护。
Community Serverhttp://www.telligentsystems.com/Solutions/OpenSource.aspx 
FCKeditorhttp://www.fckeditor.netThis HTML text editor brings to the web many of the powerful functionalities of known desktop editors like Word. It's really lightweight and doesn't require any kind of installation on the client computer. 
NUnithttp://sourceforge.net/projects/nunitUnit-testing framework for all .Net languages. Ported from junit, see http://www.junit.org/
log4nethttp://logging.apache.org/log4netlog4net is a tool to help the programmer output log statements to a variety of output targets. log4net is a port of the excellent log4j framework to the .NET runtime.
NAnthttp://nant.sourceforge.net/NAnt is a free .NET build tool. In theory it is kind of like make without make's wrinkles. In practice it's a lot like Ant. 
ASP.NET Starter Kithttp://www.asp.net/Default.aspx?tabindex=8&tabid=47The ASP.NET Starter Kits are six sample ASP.NET applications that provide code to accomplish common Web development tasks. Each sample is complete and well-documented so that you can use the code to kickstart your ASP.NET development projects today.
Spring Framework .NEThttp://sourceforge.net/projects/springnet/ 
http://www.springframework.net/
A .NET application framework inspired by the Java based Spring Framework 

Paint.NEThttp://www.eecs.wsu.edu/paint.net/Paint.NET is image and photo manipulation software designed to be used on computers that run Windows XP or 2000.
NDochttp://sourceforge.net/projects/ndocNDoc is an extensible code documentation generation tool for .NET developers. 

NHibernatehttp://sourceforge.net/projects/nhibernateA .NET port of the excellent Java Hibernate (http://www.hibernate.org) relational persistence tool. 

iBATIS.NET DataMapperhttp://sourceforge.net/projects/ibatisnetiBATIS.NET has joined the Apache Software Foundation! Please visit us athttp://incubator.apache.org/ibatis.
C#Nukehttp://www.csharpnuke.com 
Personal .NET Portalhttp://www.zaczek.net/Portal/personaldotnetportal.tab.aspx 
http://sourceforge.net/projects/dotnetportal/

转载于:https://www.cnblogs.com/puzi0315/archive/2012/07/22/2604053.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/401437.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

screen状态变Attached连接会话失败

使用xshell远程登录主机,使用screen命令启动程序运行至后台,意外发现screen session的状态为Attached,使用命令screen -r <session-id>,提示失败信息,重复多次无果。 解决方法:把自己踢掉,然…

引用类型赋值

转载于:https://www.cnblogs.com/dongyuhan/p/6519711.html

poj2624 4th Point

纯水题&#xff0c;注意交点不一定是第二个点和第三个点 #include<stdio.h>#include<string.h>#include<stdlib.h>#include<math.h>#include<algorithm>using namespace std;struct Vector{ double x; double y;};struct point{ double…

Windows Phone开发(30):图形 转:http://blog.csdn.net/tcjiaan/article/details/7453028

图形如矩形、椭圆、路径等都从Shape类派生&#xff0c;它们一般表示规则或不规则图形&#xff0c;这些图形都是简单的二维图形&#xff0c;我相信大家都能理解的。 例一&#xff1a;矩形。 请看下面的XAML代码。 [html] view plaincopyprint? <Rectangle RadiusX"20&q…

安装android sdk,后出现导出错误,提示命令行找不到解决方案

安装android sdk&#xff0c;后出现导出错误&#xff0c;提示命令行找不到解决方案 The steps. Rename android sdk tool folder : [Your Android SDK root]/tools -> toolsXXXX Download SDK Tools: http://dl-ssl.google.com/android/repository/tools_r25.2.5-windows.z…

Windows Phone开发(46):与Socket有个约会 转:http://blog.csdn.net/tcjiaan/article/details/7669315...

不知道大家有没有“谈Socket色变”的经历&#xff1f;就像我一位朋友所说的&#xff0c;Socket这家伙啊&#xff0c;不得已而用之。哈&#xff0c;Socket真的那么恐怖吗&#xff1f; 其实这话一点也不假&#xff0c;Socket有时候真的不太好操控&#xff0c;也不好维护&#xff…

百度分享插件wbuid属性无法@指定微博

好久不写博客&#xff0c;看到很多人遇到相关的问题&#xff0c;决定写一篇拯救大家于水火 现象很简单&#xff0c;你要是根据官网的例子来&#xff0c;肯定出错。。。。 官网上教你如果想在分享时自动""并且在分享后提示关注要用wbuid这个属性来配置微博id对不对&am…

lucene计分公式详解

lucene计分工具Similarity&#xff1a; 查询query q 相对于文档document d的得分跟空间向量里面 查询q 与 文档d 的余弦值有关。文档d 矢量 与 查询q 矢量越靠近&#xff0c;文档等分越高。转载于:https://www.cnblogs.com/deacon/articles/2608078.html

10 进制转 2 进制、16 进制

为什么80%的码农都做不了架构师&#xff1f;>>> function IntToBin(Value: LongInt; Size: Integer): String; vari: Integer; beginResult:;for i:Size-1 downto 0 dobeginif Value and (1 shl i)<>0 thenResult:Result1elseResult:Result0;end; end;//举例…

SSH之Hibernate总结篇

Hibernate hibernate 简介&#xff1a; hibernate是一个开源ORM(Object/Relationship Mipping)框架&#xff0c;它是对象关联关系映射的持久层框架&#xff0c;它对JDBC做了轻量级的封装&#xff0c;而我们java程序员可以使用面向对象的思想来操纵数据库。 为什么要用hibernate…

ubuntu基本命令

用户chmod chmod 777 /目录/ -R参数&#xff0d;R是对该目录及子目录的所有文件授权。转载于:https://www.cnblogs.com/cenmny/p/6534410.html

Vue开发规范

规范目的 为提高团队协作效率 便于后台人员添加功能及前端后期优化维护 输出高质量的文档 命名规范 为了让大家书写可维护的代码&#xff0c;而不是一次性的代码 让团队当中其他人看你的代码能一目了然 甚至一段时间时候后你再看你某个时候写的代码也能看 css命名规范 遵循…

.toString(c) 将数字值 渲染成 货币形式

<system.web><!--设置 语言 产生货币样式--><!--<globalization culture"en-GB" uiCulture"en-GB"/>--> ///£95.00 <!--<globalization culture"en-US" uiCulture"en-US"/>--> //…

Vue项目搭建流程

Vue 简介 vue是目前前端最具前景的框架之一&#xff0c;能帮助我们快速搭建并开发前端项目。 Vue是一套用于构建用户界面的渐进式框架。与其它大型框架不同的是&#xff0c;Vue 被设计为可以自底向上逐层应用。Vue 的核心库只关注视图层&#xff0c;不仅易于上手&#xff0c;…

x=a%pq与x=a%p,x=a%q的关系(pq互质)

http://prayer.hustoj.com/problem.php?id1770 我们 口胡 证明一下&#xff1b; a%pa%qx; tpxat’qx; ∴tpt’q; ∵(p,q)1; 所以 tpt’q; 即 kqpk’pqtpt’q; kqpxa; a%(qp)x; #include<iostream> #include<cstdio> #include<cstring> #define L…

Vue模板语法详解

vue基础、安装、介绍双大括号&#xff08;Mustache语法&#xff0c;又叫胡子语法&#xff09;v-textv-htmlv-showv-if、v-else-if、v-elsev-show 与 v-if 的区别v-forv-for 中的 keyv-if 与 v-for 一起使用v-on&#xff08;缩写&#xff1a; &#xff09;v-bind&#xff08;缩写…

C# 中利用 Conditional 定义条件方法

利用 Conditional 属性&#xff0c;程序员可以定义条件方法。Conditional 属性通过测试条件编译符号来确定适用的条件。当运行到一个条件方法调用时&#xff0c;是否执行该调用&#xff0c;要根据出现该调用时是否已定义了此符号来确定。如果定义了此符号&#xff0c;则执行该调…

小白如何从零开始运营微信公众号?

小白如何从零开始运营微信公众号&#xff1f; 一、公众号定位&#xff0c;名称&#xff0c;头像 第一步公众号定位&#xff0c;最重要。如果你自己都讲不清楚自己是干嘛的&#xff0c;还有谁愿意来关注你呢&#xff1f;无论是旅游攻略还是美妆种草&#xff0c;成长干货还是养生…

软件测试技术lab1 2017.3.13

1.安装Junit和Hamcrest 2. 安装Eclemma 3.三角问题的测试用例 4.测试结果及coverage覆盖 转载于:https://www.cnblogs.com/kale12/p/6543904.html

Fiddler 抓包详细使用教程

主要抓包工具介绍与对比&#xff08;一&#xff09;Fiddler介绍&#xff08;二&#xff09;Fiddler与其他工具对比&#xff08;三&#xff09;工作原理&#xff08;四&#xff09;下载安装&#xff08;五&#xff09;Fiddler界面概述1 主菜单说明2. 快捷菜单说明3.会话列表说明…