Author: api.rpropper
Date: Thu May 10 15:51:41 2007
New Revision: 145
Modified:
trunk/clients/cs/Makefile
trunk/clients/cs/samples/blogger/ConsoleSample.cs
Log:
Added gblogger_demo and gspreadsheet_demo to Makefile. Fixed
.NET 1.1-compliance bug in blogger sample.
Modified: trunk/clients/cs/Makefile
==============================================================================
--- trunk/clients/cs/Makefile (original)
+++ trunk/clients/cs/Makefile Thu May 10 15:51:41 2007
@@ -25,7 +25,9 @@
insertsample.exe \
updatesample.exe \
readsample.exe \
- gapps_appsdemo.exe
+ gapps_appsdemo.exe \
+ gblogger_demo.exe \
+ gspreadsheet_demo.exe
all: $(ALL_LIBS) tests $(samples)
@@ -101,7 +103,13 @@
gapps_appsdemo.exe: $(ALLLIBS) $(gapps_sample_sources)
$(CSC) -out:$@ $(ALLREFS) $(gapps_sample_sources)
-
+gblogger_sample_sources = samples/blogger/ConsoleSample.cs
+gblogger_demo.exe: $(ALLLIBS) $(gblogger_sample_sources)
+ $(CSC) -out:$@ $(ALLREFS) $(gblogger_sample_sources)
+
+gspreadsheet_demo_sources = samples/spreadsheets/spreadsheetdemo.cs
+gspreadsheet_demo.exe: $(ALLLIBS) $(gspreadsheet_demo_sources)
+ $(CSC) -out:$@ $(ALLREFS) $(gspreadsheet_demo_sources)
test:
nunit-console2 unittests.dll
Modified: trunk/clients/cs/samples/blogger/ConsoleSample.cs
==============================================================================
--- trunk/clients/cs/samples/blogger/ConsoleSample.cs (original)
+++ trunk/clients/cs/samples/blogger/ConsoleSample.cs Thu May 10 15:51:41 2007
@@ -1,5 +1,4 @@
using System;
-using System.Collections.Generic;
using System.Text;
using Google.GData.Client;
using System.Net;
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Data API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---