Here you can search through the pages of this Namespace, their attachments and the files uploaded to the system.Note: the results will only display the items you have permissions to read.
Overview This article provides reusable code for building a Version API for an Azure Function App. Reusable Code The following code, when included in an Azure Function App, provides a "GET api/Version" API which returns the following. Deployment Timestamp Version Number, as specified in a "Version.txt" file. NOTE: The "Version.txt" file must have its Build Action property set to "Embedded resource". public static class Version { [...]
Overview This code requires a "Version.txt" file in the "ACME.Common" project with a Build Action of "Embedded Resource" Code using System.IO; using System.Reflection; public static class Version { public static string Get() { /*--- Inits ---*/ var assm = Assembly.GetExecutingAssembly(); var version = string.Empty; var resourceName = "ACME.Common.Version.txt"; /*--- Read Embedded [...]
[...] but without the restriction on length. Application Paths HKLM\Software\Microsoft\Windows\Current Version\App Paths This key has one sub-key for per application. The name of each sub-key is the short name of the EXE file (e.g., winword.exe). Each sub-key has the full path to the EXE file as its default entry. Add/Remove Programs Listing HKLM\Software\Microsoft\Windows\CurrentVersion\App Management\ARPCache This key has one sub-key per application installed. Some of them are GUIDs Installed versions of .NET Framework HKLM\SOFTWARE\Microsoft\NET Framework Setup\NDP [...]
[...] Ensure the install folder exists mkdir "C:\Program Files\ MyDeploymentFolder " rem Unregister old version "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe" /u "C:\Program Files\ MyDeploymentFolder \ MyCompany . MyNamespace .dll" rem Uninstall old version from the GAC " GacUtilFolder \Gacutil.exe" -u " MyCompany . MyNamespace " rem Copy the new version to the install folder COPY MyCompany . MyNamespace .* "C:\Program Files\ MyDeploymentFolder \" rem Install the new version [...]
[...] Setup\NDP . The installed versions are listed under the NDP subkey. 2. Each subkey under NDP will have a Version entry indicating the installed version. For .NET Framework 4, the Version entry is under the Client or Full subkey (or both). 3. For the v4\Full subkey, if the Release entry exists, then .NET Framework 4.5 or higher is installed. (See below.) Versions 4.5 and Later 1. Within the Windows Registry, navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full 2. Look for [...]
Limited Version The following function, taken from here , will return a table with a single column (called "N") and the specified number of rows, to a maximum of 32 rows, and the values range from zero to N - 1 . {copytext|div1} /* select * from dbo.GetCounterTable(10) */ create function [dbo].[GetCounterTable] ( @V int ) returns @t table (N int) as begin set @v = @v - 1 if @v<>0 insert into @t select (@v) union select * from dbo.GetCounterTable(@v) else insert into @t values [...]
[...] GUID FOR PUBLIC CLASS clsRegistryEntry (Default) = "{42A2B698-11B8-11D6-B183-0EC04F2B62B9}" VERSION Here's the Version for TypeLib (Default) = "1.2" Step 3 - For each TypeLib GUID, Determine the ActiveX Server Executable Here's the TypeLib GUID FOR PUBLIC CLASS clsRegistryEntry HKLM\Software\Classes\TypeLib\{42A2B698-11B8-11D6-B183-0EC04F2B62B9} (Default) = not set Version for TypeLib \1.2 Description of TypeLib (Default) = "_Registry Function Library #2" \0 [...]
[...] executable, including any file extension IN UPPER CASE. Versions and Other Info Item Code Product Version System.Windows.Forms.Application.ProductVersion Assembly Version Assembly.GetExecutingAssembly().GetName(). sysjobs System Table - SQL Server 2000 — 1.7%
[...] date_created datetime Date the job was created. date_modified datetime Date the job was last modified. version_number int Version [...]
[...] supersubs / superfish jQuery menu, but can be adapted to any menu system. {copytext|xsl} <?xml version="1.0" encoding="iso-8859-1"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxml="urn:schemas-microsoft-com:xslt" version="1.0"> [...]
[...] Main(string[] args) { SeedEngine.ApplyVersionedUpdates(); } (2) Write Seed Version classes These should follow a naming convention "Seed_YYYYMMDD_hhmm", which will cause them to be executed in the order in which they were created. Re-usable Code public abstract class SeedBase { public abstract void Execute(); } public class SeedEngine { public static void ApplyVersionedUpdates() { // TODO: Create a SeedVersion table var asm = Assembly.GetExecutingAssembly(); // TODO: Query the most recent [...]
[...] functions found on this page: IP Address Conversion Between Integer and String - SQL Server . Code This version takes an IP address and Mask as parameters create function [dbo].[GetCidrIpAddressRange](@IpAddress varchar(15), @Mask int) returns @result table ( LowRange varchar(15) not null, HighRange varchar(15) not null, AddressQty bigint not null ) as begin declare @Base bigint = cast(4294967295 as bigint) declare @Power bigint = Power(2.0, 32.0 - @Mask) - 1 declare @LowRange bigint = dbo.ConvertIPToLong(@IpAddress) [...]
[...] the data in the form required. However, out of pure laziness, I followed the same approach. <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" [...]
[...] path ('data') ) select result = convert(xml, @xsl + @result) Sample MyXslFile.xsl File <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxml="urn:schemas-microsoft-com:xslt" version="1.0"> <xsl:template [...]
[...] feature of RealPlayer media player that allow you to customize the user interface of the player. The last version of RealPlayer to support custom skins is version [...]
SQL Server 2005 <?xml version="1.0" encoding="utf-8"?> <Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" > SQL Server 20008 <?xml version="1.0" [...]
[...] VaryByCustom Any text representing custom caching. If this is a browser, cache is varied by browser and major version. If this is a custom string, you must override the GetVaryByCustomString method in Global.asax . VaryByHeader A semicolon-separated list of HTTP headers to version [...]
[...] following code below that code group's ending element. <CodeGroup class="UnionCodeGroup" version="1" PermissionSetName="FullTrust" Name="CoDeMagSample" Description="CoDe Magazine Sample. "> <IMembershipCondition class="UrlMembershipCondition" version="1" [...]
I have two ZIP files containing ASP.NET DatePicker controls. The C#/Javascript version (with demo) can be found here . A slightly better version [...]
[...] Inherits="My.Namespace.Reports.ReportViewer" %> <%@ Register assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" [...]
[...] System.Web.HttpContext.Current.User.Identity URL of Application Root The following method will return, for example, http://localhost:2297/Version 1.0/ . This is the root directory of the web [...]
[...] projects Generated_Code/ # Backup & report files from converting an old project file to a newer # Visual Studio version. Backup files are not needed, because we have [...]
[...] column or part of the primary key, and what its order is in the table definition. SQL Server 2005 This version also includes the default values and description [...]
[...] etc.) Browsers (and versions) Additional Documentation Deployment Procedures Functional Decomposition Version History Data Model Diagram Wireframes Other [...]
[...] This article provides the IAM policy used to grant a user full access to an S3 bucket. Policy { "Version": "2012-10-17", "Statement": [ { [...]
[...] for the Request Policy, using the following template, and saving it as MainDomainDotCom .inf [Version] Signature="$Windows NT$" [NewRequest] Subject [...]
[...] folder should have an index.html file 3. The web.config file should contain the following. <?xml version="1.0" encoding="UTF-8"?> <configuration> [...]
Reference https://sqlserverbuilds.blogspot.com/ Versions Release Version SQL Server 2019 15.0 SQL Server 2017 14.0 [...]
[...] in Entity Framework 6. Concurrency exceptions happen only on entities/tables that implement a row version field. They occur when EF detects that an [...]
[...] WORKDAY() function, which adds a number of business days to a given date. For a T-SQL (SQL Server) version of this function, see WorkDay Function - SQL [...]
ScrewTurn Wiki version 3.0.1.400. Some of the icons created by FamFamFam. Except where noted, all contents Copyright © 1999-2024, Patrick Jasinski.