MSF-A+SDL is a TFS process template that incorporates the Security Development Lifecycle (SDL) for Agile process guidance into the MSF Agile development framework.

 

http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=c4b44860-cfba-494a-ba43-13c4aecf86af

 

Enjoy.

anISV 發表在 痞客邦 留言(0) 人氣()

二月份的內容主要加入了:

  • Windows Azure Drive: Enable a Windows Azure application to use existing NTFS APIs to access a durable drive. This allows the Windows Azure application to mount a page blob as a drive letter, such as X:, and enables easily migration of existing NTFS applications to the cloud.
  • OS Version support: Allows a Windows Azure application to choose the appropriate Guest OS to run on in the cloud.
  •  

    http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=dba6a576-468d-4ef6-877e-b14e3c865d3a

     

    Enjoy.

    anISV 發表在 痞客邦 留言(0) 人氣()

    這個範例是將自己的電腦中的 One Note 的資訊存儲在 Azure 中,然後借由 Safari 來瀏覽其內容.

    完整的程式碼及說明如下:

    http://www.codeproject.com/KB/aspnet/rinocp.aspx

    當我們還在想雲端能為我們做些什麼?能提供些什麼服務給我們?筆者認為這是一個很好的範例.

    再加上 HTML 5 將提供更多功能(如:離線功能),也有助於方便開發跨平台、跨裝置的應用程式.

    Enjoy.

    anISV 發表在 痞客邦 留言(1) 人氣()

    Windows Azure 平台目前提供:

    - Windows Azure: operating system as a service
    - Microsoft SQL Azure: fully relational database in the cloud
    - Windows Azure platform AppFabric: makes it simpler to connect cloud and on-premises applications

    Windows Azure is now commercially available. The services will remain free to evaluate through January 2010. We will begin charging customers on February 1st, 2010.

    Enjoy.

    anISV 發表在 痞客邦 留言(0) 人氣()

    Overview

    The Azure Services Training Kit includes a comprehensive set of technical content including hands-on labs, presentations, and demos that are designed to help you learn how to use the Windows Azure platform including: Windows Azure, SQL Azure and AppFabric. The December release includes new and updated labs in addition to information about Microsoft Codename “Dallas”. This training kit contains the following content:
    Hands On Labs

    • Introduction to Windows Azure
    • Exploring Windows Azure Storage
    • Deploying and Monitoring Applications in Windows Azure
    • Windows Azure: Worker Role Communication
    • Federated Authentication in a Windows Azure Web Role Application
    • Building ASP.NET Web Form Applications with Windows Azure
    • Introduction to SQL Azure
    • Migrating Databases to SQL Azure
    • SQL Azure: Tips and Tricks
    • Intro to Dallas
    • Introduction to the .NET Service Bus
    • Introduction to the .NET Access Control Service
    • Service Remoting with Service Bus
    • Eventing with the Service Bus

    Presentations and Videos
    • Windows Azure Platform Overview (C9 - VIDEO)
    • What is Windows Azure? (C9 - VIDEO)
    • Windows Azure Storage Overview (C9 - VIDEO)
    • Deploying Applications on Windows Azure (C9 - VIDEO)
    • Windows Azure Compute (C9 - VIDEO)
    • Introduction to Windows Azure (PPTX)
    • Building Services with Windows Azure (PPTX)
    • What is SQL Azure? (C9 - VIDEO)
    • Introduction to SQL Azure (PPTX)
    • Building Applications using SQL Azure (PPTX)
    • Scaling out with SQL Azure
    • What is Microsoft Codename "Dallas"? (C9 - VIDEO)
    • Introduction to Microsoft Codename "Dallas" (PPTX)
    • What is the Access Control Service (C9 - VIDEO)
    • Introduction to the Service Bus (C9 - VIDEO)

    Demos
    • Deploying Windows Azure Services
    • Hello Windows Azure
    • Windows Azure Guestbook Demo
    • Windows Azure Logging and Configuration Demo
    • Windows Azure using Blobs Demo
    • Windows Azure Worker Role Demo
    • Windows Azure Using Queues Demo
    • Windows Azure Using Tables Demo
    • Preparing your SQL Azure Account
    • Connecting to SQL Azure
    • Managing Logins and Security in SQL Azure
    • Creating Objects in SQL Azure
    • Migrating a Database Schema to SQL Azure
    • Moving Data Into and Out Of SQL Azure using SSIS
    • Building a Simple SQL Azure App
    • Scaling Out SQL Azure with Database Sharding
    • AppFabric Service Bus Direct Connection Demo
    • AppFabric Service Bus webHttpRelayBinding
    • AppFabric Service Bus Publish and Subscribe
    • AppFabric Service Bus Service Registry
    • AppFabric Service Bus NetOneWayRelayBinding

    Samples and Tools
    • Windows Azure MMC
    • Windows Azure Service Management CmdLets
    • PhluffyFotos

    anISV 發表在 痞客邦 留言(0) 人氣()

    Microsoft® Visual Studio® 2010 and Team Foundation Server® 2010 Beta 2 for Windows Virtual PC Image

    Microsoft Visual Studio 2010 Ultimate simplifies solution development, lowering risk and increasing return. The virtual machine image in this download contains both Microsoft Visual Studio 2010 Beta2 and Team Foundation Server 2010 Beta2 and is designed to be run under Windows Virtual PC.

     

    Microsoft Visual Studio 2010 Beta 2 and Team Foundation Server® 2010 Beta 2 Hyper-V Image

    Microsoft Visual Studio 2010 Ultimate simplifies solution development, lowering risk and increasing return. The virtual machine image in this download contains both Microsoft Visual Studio 2010 Beta2 and Team Foundation Server 2010 Beta2 and the requisite trial software. Designed to be run from Microsoft® Hyper-V

     

    Visual Studio 2010 Beta 2 Virtual PC SP1 Image

    Microsoft Visual Studio 2010 Ultimate simplifies solution development, lowering risk and increasing return. The virtual machine image in this download contains both Microsoft Visual Studio 2010 Beta2 and Team Foundation Server 2010 Beta2 and the requisite trial software. Designed to be run from Microsoft® Virtual PC 2007 SP1.

    Enjoy.

    anISV 發表在 痞客邦 留言(0) 人氣()

    最近使用 VS 2010 的 Coded UI Test 時,是覺得在測試 UI 上是蠻有幫助的.

    但是若我的 Test Case 一多,也沒有時間一直盯著電腦看,若可以加上擷取畫面的功能就更方便了.

    在跟微軟反應後,很快即得到 PM 的回覆:

    其實擷取畫面的功能已經在他們的 Backlog 中了.(我猜應是來不及做在 2010 中,之後應會加上去)

    建議使用現在已提供的 API 來抓畫面,範例如下:

    Image pic = UITestControl.Desktop.CaptureImage();
    pic.Save(@"C:\Users\Jacky\Desktop\CaseA.png");

    就在想要擷取畫面的地方加入上述的程式碼,即使用 UITestControl.Desktop.CaptureImage() 將整個畫面抓下來(PrintScreen)

    Enjoy. 

    anISV 發表在 痞客邦 留言(0) 人氣()

    下列有幾個微軟研討會的投影片,其中說明了微軟對雲端的發展策略、產品發品現況及藍圖,供參考:

    · 微軟雲端策略與發展 (pdf 檔 4.47MB)

    · 微軟線上服務 (pdf 檔 8.9MB)

    · Windows Azure Platform 概述 (pdf 檔 1.25MB) <= 若對 Windows Azure Platform 有趣興,一定要看一下這一份

    · 搶先揭露微軟私有雲解決方案全貌 (pdf 檔 3.93MB)

    · 微軟動態資料中心工具建置企業私有雲 (pdf 檔 1.95MB)

    · 高彈性高安全性虛擬化桌面應用 (pdf 檔 2.04MB)

     

    記得一年多前開始接觸 Windows Azure Platform 時,它才剛開始對外公開,經過一年多,它真的在各方面都進步很多,開發的 Product Team 也將大家提供的建議記錄下來並改進.給他們拍手一下.

    anISV 發表在 痞客邦 留言(1) 人氣()

    ASP.NET MVC 2 is a framework for developing highly testable and maintainable Web applications by leveraging the Model-View-Controller (MVC) pattern. The framework encourages developers to maintain a clear separation of concerns among the responsibilities of the application – the UI logic using the view, user-input handling using the controller, and the domain logic using the model. ASP.NET MVC applications are easily testable using techniques such as test-driven development (TDD).


    The installation package includes templates and tools for Visual Studio 2008 SP 1 to increase productivity when writing ASP.NET MVC applications. For example, the Add View dialog box takes advantage of customizable code generation (T4) templates to generate a view based on a model object. The default project template allows the developer to automatically hook up a unit-test project that is associated with the ASP.NET MVC application.

    Because the ASP.NET MVC framework is built on ASP.NET 3.5 SP 1, developers can take advantage of existing ASP.NET features like authentication and authorization, profile settings, localization, and so on.

     

    Download:

    http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=3b537c55-0948-4e6a-bf8c-aa1a78878da0

    anISV 發表在 痞客邦 留言(1) 人氣()

    The SharePoint 2010 Beta Developer Training Kit provides developers with deep guidance on how to develop for SharePoint 2010. Through PowerPoint decks, Hands-On Labs, Source Code, and Instructor-Led Videos, the developer kit walks you through an array of important developer topics--including Developer Roadmap, Visual Studio tooling, Workflow, Business Connectivity Services, and much, much more.

     

    Download:

    http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=bfd1603b-7550-4b8e-be85-4215a5069b90

    anISV 發表在 痞客邦 留言(0) 人氣()