Visual Studio At Publish Web Show Error : Can't find the valid AspnetMergePath

According to this tutorial and it work to me : https://www.it-swarm.net/id/asp.net/tidak-dapat-menemukan-aspnetmergepath-yang-valid-di-visual-web-developer-publish/1069394938/

First Im Open file : Microsoft.Web.Publishing.AspNetCompileMerge.targets
It located at : {Application_PATH}\packages\MSBuild.Microsoft.VisualStudio.Web.targets.14.0.0.3\tools\VSToolsPath\Web\Transform

At this segment :

        Name="GetAspNetMergePath"
      DependsOnTargets="$(GetAspNetMergePathDependsOn)"
      Condition ="'$(GetAspNetMergePath)' != 'false'">
   
        C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\
      aspnet_merge.exe
      $(TargetFrameworkSDKToolsDirectory)
   

               Text="Can't find the valid AspnetMergePath" />
 


I Added script at blue line... After that it work normally.

Java Convert Date Format

I have date data with format "2019-08-25T13:45:13+00:00" and I'd like to convert it into more simple format such 25-Aug-2019

Here's the code:

SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ"); 
String strDate = "";
try {
    //dateInString is variable contain : 2019-08-25T13:45:13+00:00 
    Date date1 = formatter.parse(dateInString.replaceAll("Z$", "+0000")); 
    DateFormat dateFormat = new SimpleDateFormat("dd-MMM-yy");    
    strDate = dateFormat.format(date1); //you got the new date format on string
} catch (ParseException e) {
    e.printStackTrace(); 
}



Explanation about date format may be found at this link :
https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html