TODO:
Have you ever wanted to get the week of the year by using a a custom first day of the week?
SOLUTION:
var weekOfYear = CultureInfo.CurrentCulture.Calendar.GetWeekOfYear(
DateTime.Now,
CalendarWeekRule.FirstDay,
DayOfWeek.Monday);
NOTES:
This sample will get the week of the year by using the FirstDay of the week set to Monday, rather than the default of Sunday.
TODO:
Have you ever wanted to add your own prerequisites to a Click-Once application?
SOLUTION:
1. Follow the instructions here to create a package manifest.
2. Follow the instructions here to create a product manifest.
3. Last restart Visual Studio and you will see your prerequisites in the list.
NOTES:
There are no notes on this topic.