Uncategorized
Create your extension TFS 2015 VNEXT
Start by downloading a template project, you have two project templates, one dedicated to the integration part, another dedicated to the realization of custom build or release tasks.
In this post we will realize an extension that will aim to start an application pool, without managing this specify.
For the part back we will combine our extension with a shell script.
Begin with open Explorer Visual Studio extensions,
Install the following template :
Below is a detail on the different of your solution.
Most of these directories will be deleted in the second time.
Now we will start developing our own extension,
First, delete the files that we use nothing:
- Remove the test directory
- Remove typings directory
- Delete the file app.ts
- Add directory Sample
- Create a powershell file Sample.ps1
- Create a task manifest file task.json
- Create logo into directory
Below the output of created project
- Edit the task.json by defining your layout based on controls and groups concepts, inputs are your controls typed with type propecty, and are grouped into groups, by using group property (Below sample of grouping, we have three groups)
Below the task.json file after modify
We have another section related to call code behind, for our project, code behind is powersell, it can be another type
- Implement your Code behind and match with your layout arguments
Ensure that arguments ps1 match with json arguments, in execution section on your json, ensure that you have referenced your target file.
- For debugging after implementing, open your ps ise, you can find-it in C:\Windows\System32\WindowsPowerShell\v1.0\powershell_ise.exe
Ensure that you have right of debugging by executing this script, and just click F5
- Register your extension in the manifeste
GC.Collect
MCT Summit
The 2016 MCT Summit in Sydney Australia invites Microsoft Certified Trainers from Australia, New Zealand and beyond to a two-day event co-hosted by the MCT community and Microsoft. MCT events are your best opportunity to interact with your peers and engage directly with Microsoft. Come learn about the future of Microsoft learning, the MCT Program, how to teach a specific course or technology, or how to become a better trainer
Microsoft’s Worldwide MCT/MCP Program Manager, Patrick Thomas will be here from Microsoft Corporation, Redmond, USA as well as Chee Sing Chen, Microsoft Asia Pacific Learning Experiences Director will be in attendance and you will have the ability to find out more about Microsoft’s MCT Program Strategy and Vision.
Registration is now open and Agenda details are available HERE
Disclaimer: Microsoft respects your privacy. Review our online Privacy Statement.
If you would prefer to no longer receive this communication, please email MCTPM@Microsoft.com with “UNSUBSCRIBE” in the subject line. To set your contact preferences for other Microsoft communications, see the communications preferences section of the Microsoft Privacy Statement.
Microsoft Corporation
One Microsoft Way
Redmond, WA, USA 98052
Welcome to AEA for Aghilas
Cool I am now part of the AEA committee
Dear Aghilas,
Welcome to the Association of Enterprise Architects (AEA). As a new member, you have joined forces with EA professionals worldwide who are working together to advance the profession of Enterprise Architecture and promote professional excellence.
Your username for the AEA is aghilas.yakoub and your Membership Number is ………
To sign into the AEA website please go to: https://www.globalaea.org
After logging in you will be able to manage your Profile by editing your bio,managing preferences and email subscriptions to blogs and forums.
You will also be able to access content and features, such as blogs, photo gallery, networks, and our AEA community via messaging, connections, groups,chapters, Work Groups, and Forums. You will be able to connect with fellow members, share ideas and expertise.
We hope you enjoy our online community and look forward to your participation!
Association of Enterprise Architects (AEA)
Tips
MAILING SQL SERVER
Below a post aimed to alert you if a volume is exceeded on your SQL Server, for example, the basic transaction data may exceed certain thresholds for that access your agent SQL SERVER, configure it in such a way as to send mails.
Audit SQL SERVER
You gave rights to a user, you want to know if that user has rights has spread another user, simple to make, use SQL SERVER Audit, create an audit specification
“SERVER_ROLE_MEMBER_CHANGE_GROUP”
You use both nodes Audit (audit and Create output formatting) & Specification (Create the specification)
Link : https://technet.microsoft.com/en-us/library/cc280500(v=sql.105).aspx
For your security management of your database, choose the concept of Role personalized, permission on a schema, add users to your role (Just as it would have been done with the Principal, Identity, Permission, Claims in C # ). Associating the scheme now to the role and not to different users.
Policy Management & Tips
It is interesting how implement code standards for stored procedures in Sql Server, stored procedures system are prefixed with “sp_”, for our user stored procedures, let the prefix of “usp_”, this is done with Policy Management (see SSMS – the object explorer, root).
Right-click on Policy Management and select New Condition, Type a name and condition as well as the body of your condition, we have decided to select the Name filter expression LIKE (‘usp_%’).
The next step is to create a policy associated with this codition, right-click Policy Management and select New Policy, select the Check Condition list, the condition created previously, the evaluation mode must be set to “On change: prevent prevention “, the default mode is” on Demand “and policies can not be enabled in this mode, for the Target, make sure you select all the databases and all stored procedures.
SQL Server – Slow Finish
As part of optimizing your SQL queries, if you want to line of code to include the execution plan, drag this instruction before execution.
SET STATISTICS SHOWPLAN_XML ON
If you want to optimize the recovery of your data in an environment with a default isolation level of Read Committed or SERIALIZBLE, slide this instruction before execution.
SET TRANSACTION ISOLATION LEVEL SNAPSHOT
As part of query optimization, you can associate a clean SQL query execution plan for you so to override the behavior of the query optimizer, see reference Plan in SQL Server Management Studio, you can create your SEEK FORCE clauses on your favorite index etc.
link : https://technet.microsoft.com/fr-fr/library/bb895390(v=sql.105).aspx
You can sometimes just be an update statistics 🙂
For the database novice, the positioning of the index is very important and is based on real data collecting tools (Production Environment)
As for the SQL Server after try: Database Engine Tuning Advisor, included in SSMS since the 2012 version.
GC.Collect
Tips Net
Below is a set of frequently asked questions as part of a .Net development platform, this post is also inspired some topics discussed in the Microsoft Best Practise
How to validate the compliance of a development compared to an architecture with a Build? (Ultimate License Requirements)
Create diagram Layer empty, move layers from solution on diagram and add dependencies, Create Gated CheckIn Build (Based on Shelveset), and in arguments of Build add : /p:ValidateArchitecture=true
How to detect copy and paste source code? (VS Prerequisites 2013)
Use Analyse Solution for Code Clones available under the section ANALYSIS
How to force the update of SSRS reports in a TFS platform (available under the Portal Server )?
Access to Administration console TFS, select Reporting tab, click on Start Rebuild link
Diagnosing a proxy TFS source control ?
Use web service ProxyStatistics available on application layer
GC.Collect
- ← Previous
- 1
- 2
- 3
- Next →