mirror of
				https://github.com/winfsp/winfsp.git
				synced 2025-10-30 11:38:39 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			1006 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			1006 B
		
	
	
	
		
			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-2016 Bill Zissimopoulos</MyCopyright>
 | |
|         <!-- 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>0.17.$(MyBuildNumber)</MyVersion>
 | |
|         <MyVersionWithCommas>$(MyVersion.Replace('.',',')),0</MyVersionWithCommas>
 | |
|     </PropertyGroup>
 | |
|     <ItemDefinitionGroup>
 | |
|         <ClCompile>
 | |
|             <PreprocessorDefinitions>NTDDI_VERSION=0x06000000;_WIN32_WINNT=0x0600</PreprocessorDefinitions>
 | |
|         </ClCompile>
 | |
|     </ItemDefinitionGroup>
 | |
| </Project> |