MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

SSARC Utility & SSRESTOR Utility – Archive, Restore VSS Project – Guide

ssarc-utility-ssrestor-utility

Question:  How to Archive VSS Project in Visual Source Safe (VSS)? How to Restore VSS Project in  Visual Source Safe (VSS)? What is SSARC Utility? What is SSRESTOR Utility? SSARC Utility Allows you to archive files, projects, or old versions from a Visual SourceSafe database. Each time you run SSARC (Ssarc.exe), the utility asks only … Read more

How To Create a Unique SRCSAFE.INI File ?

srcsafeini-file

1. Create a new SRCSAFE.INI file and place it in the desired location. 2. If you want include the default SRCSAFE.INI in the unique copy, add the following line: #INCLUDE <SS path>\SRCSAFE.INI 3. Create the following environment variable: SET SSDIR=<path to VSS directory> (such as SET SSDIR = \\MyServer\MyVSSdir) While it is possible to do … Read more

Understand Ant command line arguments with Examples

ant-command-line-arguments

Several tasks take arguments that will be passed to another process on the command line. To make it easier to specify arguments that contain space characters, nested arg elements can be used. value – a single command-line argument; can contain space characters. file – The name of a file as a single command-line argument; will … Read more

How to use ant Script to Reset BuildNumber?

To use this code, you need to have the file build.number containging: major.number=1 minor.number=0 hotfix.number=0 revision.number=0 continuous.number=0 Then the following 3 targets:   <taskdef resource=”net/sf/antcontrib/antlib.xml”/> <taskdef name=”unset” classname=”ise.antelope.tasks.Unset”/>     <target name=”initBuildNum” description=”Get current build number properties”> <property file=”build.number”/> <var name=”next.major” value=”${major.number}”/> <var name=”next.minor” value=”${minor.number}”/> <var name=”next.hotfix” value=”${hotfix.number}”/> <var name=”next.revision” value=”${revision.number}”/> <var name=”next.continuous” value=”${continuous.number}”/> </target>     <target name=”getBuildNum”> … Read more

Command line switches of devenv.exe | Devenv command line switches Guide

devenvexe-command-line-switches

To see this list, type devenv /? on command prompt /build – build the specified solution configuration   /project – specifies the project to build instead of solution, must specify /build to use /project   /projectconfig – specifies project configuration to build, must specify /project to use /projectconfig   /out – write build output to … Read more

Ant command line arguments – Examples – Summary

ant-command-line-arguments

Ant command line arguments Several tasks take arguments that will be passed to another process on the command line. To make it easier to specify arguments that contain space characters, nested arg elements can be used. value – a single command-line argument; can contain space characters. file – The name of a file as a … Read more