-
Satellite-Packages/ConsoleApp
- This console application will set the current UI culture to English, Japanese, and Russian, and output a string fromClassLibrary
-
Satellite-Packages/ClassLibrary
- This "localized" class library project exposes string properties for consumption withinConsoleApp
. -
Satellite-Packages/ClassLibrary/ClassLibrary.nuspec
- The spec for creating theClassLibrary
runtime package -
Satellite-Packages/ClassLibrary/ClassLibrary.ja-jp.nuspec
- The spec for creating theClassLibrary.ja-jp
satellite package -
Satellite-Packages/ClassLibrary/ClassLibrary.ru-ru.nuspec
- The spec for creating theClassLibrary.ru-ru
satellite package -
Satellite-Packages/ClassLibrary/ClassLibrary.Localization.nuspec
- The meta package that pulls in bothClassLibrary.ja-jp
andClassLibrary.ru-ru
-
Satellite-Packages/ConsoleApp
has a NuGet package reference toSatellite-Packages/ClassLibrary
. By adding a package reference toClassLibrary.ja-jp
,ClassLibrary.ru-ru
, orClassLibrary.Localization
, the output of the console application will change to include localized strings.