mirror of
				https://github.com/winfsp/winfsp.git
				synced 2025-10-30 19:48:38 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | |
|     <PropertyGroup>
 | |
|         <MyProductName>WinFsp</MyProductName>
 | |
|         <MyDescription>Windows File System Proxy</MyDescription>
 | |
|         <MyCompanyName>Navimatics Corporation</MyCompanyName>
 | |
|         <MyCopyright>2015-$([System.DateTime]::Now.ToString(`yyyy`)) Bill Zissimopoulos</MyCopyright>
 | |
| 
 | |
|         <MyCanonicalVersion>1.0</MyCanonicalVersion>
 | |
| 
 | |
|         <MyProductVersion>$(MyCanonicalVersion) RC1</MyProductVersion>
 | |
|         <MyProductStage>RC</MyProductStage>
 | |
| 
 | |
|         <!-- build number: concat 2-digit year with 3-digit day of the year (16-bits until 2066) -->
 | |
|         <MyBuildNumber>$([System.DateTime]::Now.ToString(`yy`))$([System.DateTime]::Now.DayOfYear.ToString(`000`))</MyBuildNumber>
 | |
| 
 | |
|         <MyVersion>$(MyCanonicalVersion).$(MyBuildNumber)</MyVersion>
 | |
|         <MyVersionWithCommas>$(MyVersion.Replace('.',',')),0</MyVersionWithCommas>
 | |
|     </PropertyGroup>
 | |
| 
 | |
|     <ItemDefinitionGroup>
 | |
|         <ClCompile>
 | |
|             <PreprocessorDefinitions>NTDDI_VERSION=0x06010000;_WIN32_WINNT=0x0601</PreprocessorDefinitions>
 | |
|         </ClCompile>
 | |
|     </ItemDefinitionGroup>
 | |
| </Project> |