# Common Library - Consolidation Summary

## Overview

The `StdUtil.cs` and `StdWeb.cs` utility modules have been consolidated into a shared library to eliminate duplication across projects.

## What Was Created

### 1. New Common Library Project
**Location**: `Common\Common.csproj`
- **Type**: .NET Framework 4.8 Class Library
- **Namespace**: `Utils`
- **Purpose**: Centralized utility library for all projects

## Key Changes

### Namespace Change
- **Old**: `namespace FileUpload` (project-specific)
- **New**: `namespace Utils`

## Baseline Migration Pattern

1. Add a project reference to `Common\Common.csproj`
2. Update code to use `Utils`
3. Exclude or remove any legacy local `StdUtil.cs` and `StdWeb.cs` files
