nouvelles configs
* Makefile: * Yavsc.sln: * pkg.mdproj: * Presta.csproj: * TestAPI.csproj: * YavscModel.csproj: * YavscClient.csproj: * fortune.csproj: * WebControls.csproj: * SalesCatalog.csproj: * ITContentProvider.csproj: * NpgsqlMRPProviders.csproj: * NpgsqlBlogProvider.csproj: * Yavsc.csproj: * NpgsqlContentProvider.csproj: nouvelles configurations de déploiement * LocalizedText.resx: * LocalizedText.fr.resx: * LocalizedText.Designer.cs: * LocalizedText.fr.Designer.cs: internationalisation
This commit is contained in:
parent
948fc64ce1
commit
d89b6c39df
33 changed files with 475 additions and 20 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* Makefile:
|
||||||
|
* Yavsc.sln: nouvelles configurations de déploiement
|
||||||
|
|
||||||
2015-11-23 Paul Schneider <paul@pschneider.fr>
|
2015-11-23 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* .gitignore: ignorer les configuration des pré et prod totem.
|
* .gitignore: ignorer les configuration des pré et prod totem.
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* ITContentProvider.csproj: nouvelles configurations de
|
||||||
|
déploiement
|
||||||
|
|
||||||
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* ITContentProvider.csproj: adds a build target named "Lua"
|
* ITContentProvider.csproj: adds a build target named "Lua"
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,27 @@
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>bin\Lua</OutputPath>
|
<OutputPath>bin\Lua</OutputPath>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemProd|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemProd</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'YavscPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\YavscPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Yavsc|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Yavsc</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
|
|
|
||||||
14
Makefile
14
Makefile
|
|
@ -13,6 +13,9 @@ DESTDIR_rsync_pre=/srv/www/yavscpre
|
||||||
HOST_rsync_prod=lua.pschneider.fr
|
HOST_rsync_prod=lua.pschneider.fr
|
||||||
DESTDIR_rsync_prod=/srv/www/yavsc
|
DESTDIR_rsync_prod=/srv/www/yavsc
|
||||||
|
|
||||||
|
HOST_rsync_yavsc=lua.pschneider.fr
|
||||||
|
DESTDIR_rsync_yavsc=/srv/www/yavsc
|
||||||
|
|
||||||
HOST_rsync_lua=lua.pschneider.fr
|
HOST_rsync_lua=lua.pschneider.fr
|
||||||
DESTDIR_rsync_lua=/srv/www/lua
|
DESTDIR_rsync_lua=/srv/www/lua
|
||||||
|
|
||||||
|
|
@ -36,7 +39,7 @@ ddir:
|
||||||
|
|
||||||
deploy: ddir build
|
deploy: ddir build
|
||||||
rm -rf $(LYDESTDIR)
|
rm -rf $(LYDESTDIR)
|
||||||
xbuild /p:Configuration=$(CONFIG) /p:SkipCopyUnchangedFiles=$(COPYUNCHANGED) /p:DeployDir=../$(LDYDESTDIR) /t:Deploy web/Web.csproj
|
xbuild /p:Configuration=$(CONFIG) /p:SkipCopyUnchangedFiles=$(COPYUNCHANGED) /p:DeployDir=../$(LDYDESTDIR) /t:Deploy web/Yavsc.csproj
|
||||||
|
|
||||||
rsync_% : HOST = $(HOST_$@)
|
rsync_% : HOST = $(HOST_$@)
|
||||||
|
|
||||||
|
|
@ -73,11 +76,13 @@ docdeploy-prod: htmldoc
|
||||||
|
|
||||||
rsync_lua: CONFIG = Lua
|
rsync_lua: CONFIG = Lua
|
||||||
|
|
||||||
rsync_yavsc:
|
rsync_pre: CONFIG = YavscPre
|
||||||
|
|
||||||
rsync_pre:
|
rsync_prod: CONFIG = Yavsc
|
||||||
|
|
||||||
rsync_prod:
|
rsync_totempre: CONFIG = TotemPre
|
||||||
|
|
||||||
|
rsync_totemprod: CONFIG = TotemProd
|
||||||
|
|
||||||
nuget_restore:
|
nuget_restore:
|
||||||
for prj in ITContentProvider NpgsqlBlogProvider NpgsqlContentProvider NpgsqlMRPProviders Presta SalesCatalog TestAPI web WebControls yavscclient yavscModel; do nuget restore "$${prj}/packages.config" -SolutionDirectory . ; done
|
for prj in ITContentProvider NpgsqlBlogProvider NpgsqlContentProvider NpgsqlMRPProviders Presta SalesCatalog TestAPI web WebControls yavscclient yavscModel; do nuget restore "$${prj}/packages.config" -SolutionDirectory . ; done
|
||||||
|
|
@ -86,3 +91,4 @@ nuget_update:
|
||||||
for prj in ITContentProvider NpgsqlBlogProvider NpgsqlContentProvider NpgsqlMRPProviders Presta SalesCatalog TestAPI web WebControls yavscclient yavscModel; do nuget update "$${prj}/packages.config" ; done
|
for prj in ITContentProvider NpgsqlBlogProvider NpgsqlContentProvider NpgsqlMRPProviders Presta SalesCatalog TestAPI web WebControls yavscclient yavscModel; do nuget update "$${prj}/packages.config" ; done
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* NpgsqlBlogProvider.csproj: nouvelles configurations de
|
||||||
|
déploiement
|
||||||
|
|
||||||
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* NpgsqlBlogProvider.csproj: adds a build target named "Lua"
|
* NpgsqlBlogProvider.csproj: adds a build target named "Lua"
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,27 @@
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>bin\Lua</OutputPath>
|
<OutputPath>bin\Lua</OutputPath>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemProd|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemProd</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'YavscPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\YavscPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Yavsc|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Yavsc</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* NpgsqlContentProvider.csproj: nouvelles configurations de
|
||||||
|
déploiement
|
||||||
|
|
||||||
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* NpgsqlContentProvider.cs: reccupère la photo activité en
|
* NpgsqlContentProvider.cs: reccupère la photo activité en
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,27 @@
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>bin\Lua</OutputPath>
|
<OutputPath>bin\Lua</OutputPath>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemProd|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemProd</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'YavscPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\YavscPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Yavsc|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Yavsc</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* NpgsqlMRPProviders.csproj: nouvelles configurations de
|
||||||
|
déploiement
|
||||||
|
|
||||||
2015-11-23 Paul Schneider <paul@pschneider.fr>
|
2015-11-23 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* NpgsqlProfileProvider.cs: Fixe un bug introduit avec
|
* NpgsqlProfileProvider.cs: Fixe un bug introduit avec
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,27 @@
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>bin\Lua</OutputPath>
|
<OutputPath>bin\Lua</OutputPath>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemProd|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemProd</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'YavscPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\YavscPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Yavsc|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Yavsc</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* Presta.csproj: nouvelles configurations de déploiement
|
||||||
|
|
||||||
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* Presta.csproj: adds a build target named "Lua"
|
* Presta.csproj: adds a build target named "Lua"
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,27 @@
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>bin\Lua</OutputPath>
|
<OutputPath>bin\Lua</OutputPath>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemProd|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemProd</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'YavscPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\YavscPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Yavsc|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Yavsc</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* SalesCatalog.csproj: nouvelles configurations de déploiement
|
||||||
|
|
||||||
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* SalesCatalog.csproj: adds a build target named "Lua"
|
* SalesCatalog.csproj: adds a build target named "Lua"
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,27 @@
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>bin\Lua</OutputPath>
|
<OutputPath>bin\Lua</OutputPath>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemProd|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemProd</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'YavscPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\YavscPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Yavsc|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Yavsc</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* TestAPI.csproj: nouvelles configurations de déploiement
|
||||||
|
|
||||||
2015-11-25 Paul Schneider <paul@pschneider.fr>
|
2015-11-25 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* TestAPI.csproj: ... une référence au framework 4.5.1 en
|
* TestAPI.csproj: ... une référence au framework 4.5.1 en
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,7 @@
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<ConsolePause>false</ConsolePause>
|
<ConsolePause>false</ConsolePause>
|
||||||
|
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<DebugType>full</DebugType>
|
<DebugType>full</DebugType>
|
||||||
|
|
@ -28,11 +29,33 @@
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<ConsolePause>false</ConsolePause>
|
<ConsolePause>false</ConsolePause>
|
||||||
|
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Lua|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Lua|AnyCPU' ">
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>bin\Lua</OutputPath>
|
<OutputPath>bin\Lua</OutputPath>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemProd|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemProd</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'YavscPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\YavscPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Yavsc|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Yavsc</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
|
|
@ -122,9 +145,9 @@
|
||||||
<Project>{90BF2234-7252-4CD5-B2A4-17501B19279B}</Project>
|
<Project>{90BF2234-7252-4CD5-B2A4-17501B19279B}</Project>
|
||||||
<Name>SalesCatalog</Name>
|
<Name>SalesCatalog</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="..\web\Web.csproj">
|
<ProjectReference Include="..\web\Yavsc.csproj">
|
||||||
<Project>{77044C92-D2F1-45BD-80DD-AA25B311B027}</Project>
|
<Project>{77044C92-D2F1-45BD-80DD-AA25B311B027}</Project>
|
||||||
<Name>Web</Name>
|
<Name>Yavsc</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* WebControls.csproj: nouvelles configurations de déploiement
|
||||||
|
|
||||||
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* WebControls.csproj: Lua config
|
* WebControls.csproj: Lua config
|
||||||
|
|
|
||||||
|
|
@ -8,8 +8,8 @@
|
||||||
<ProjectGuid>{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}</ProjectGuid>
|
<ProjectGuid>{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}</ProjectGuid>
|
||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>WebControls</RootNamespace>
|
<RootNamespace>WebControls</RootNamespace>
|
||||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
||||||
<AssemblyName>Yavsc.WebControls</AssemblyName>
|
<AssemblyName>Yavsc.WebControls</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
|
@ -21,6 +21,7 @@
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<ConsolePause>false</ConsolePause>
|
<ConsolePause>false</ConsolePause>
|
||||||
<DocumentationFile>bin\Debug\Yavsc.WebControls.xml</DocumentationFile>
|
<DocumentationFile>bin\Debug\Yavsc.WebControls.xml</DocumentationFile>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<DebugType>full</DebugType>
|
<DebugType>full</DebugType>
|
||||||
|
|
@ -29,11 +30,33 @@
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<ConsolePause>false</ConsolePause>
|
<ConsolePause>false</ConsolePause>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Lua|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Lua|AnyCPU' ">
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>bin\Lua</OutputPath>
|
<OutputPath>bin\Lua</OutputPath>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemProd|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemProd</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'YavscPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\YavscPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Yavsc|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Yavsc</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
|
|
|
||||||
96
Yavsc.sln
96
Yavsc.sln
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||||
# Visual Studio 2010
|
# Visual Studio 2010
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Web", "web\Web.csproj", "{77044C92-D2F1-45BD-80DD-AA25B311B027}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Yavsc", "web\Yavsc.csproj", "{77044C92-D2F1-45BD-80DD-AA25B311B027}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NpgsqlMRPProviders", "NpgsqlMRPProviders\NpgsqlMRPProviders.csproj", "{BBA7175D-7F92-4278-96FC-84C495A2B5A6}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NpgsqlMRPProviders", "NpgsqlMRPProviders\NpgsqlMRPProviders.csproj", "{BBA7175D-7F92-4278-96FC-84C495A2B5A6}"
|
||||||
EndProject
|
EndProject
|
||||||
|
|
@ -41,6 +41,10 @@ Global
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
Release|Any CPU = Release|Any CPU
|
Release|Any CPU = Release|Any CPU
|
||||||
Lua|Any CPU = Lua|Any CPU
|
Lua|Any CPU = Lua|Any CPU
|
||||||
|
TotemPre|Any CPU = TotemPre|Any CPU
|
||||||
|
TotemProd|Any CPU = TotemProd|Any CPU
|
||||||
|
YavscPre|Any CPU = YavscPre|Any CPU
|
||||||
|
Yavsc|Any CPU = Yavsc|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{42B77C89-BF6D-4DB1-8763-6197F4030A95}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{42B77C89-BF6D-4DB1-8763-6197F4030A95}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
|
@ -48,74 +52,164 @@ Global
|
||||||
{42B77C89-BF6D-4DB1-8763-6197F4030A95}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
{42B77C89-BF6D-4DB1-8763-6197F4030A95}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
||||||
{42B77C89-BF6D-4DB1-8763-6197F4030A95}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{42B77C89-BF6D-4DB1-8763-6197F4030A95}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{42B77C89-BF6D-4DB1-8763-6197F4030A95}.Release|Any CPU.Build.0 = Release|Any CPU
|
{42B77C89-BF6D-4DB1-8763-6197F4030A95}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{42B77C89-BF6D-4DB1-8763-6197F4030A95}.TotemPre|Any CPU.ActiveCfg = TotemPre|Any CPU
|
||||||
|
{42B77C89-BF6D-4DB1-8763-6197F4030A95}.TotemProd|Any CPU.ActiveCfg = TotemProd|Any CPU
|
||||||
|
{42B77C89-BF6D-4DB1-8763-6197F4030A95}.TotemProd|Any CPU.Build.0 = TotemProd|Any CPU
|
||||||
|
{42B77C89-BF6D-4DB1-8763-6197F4030A95}.Yavsc|Any CPU.ActiveCfg = Yavsc|Any CPU
|
||||||
|
{42B77C89-BF6D-4DB1-8763-6197F4030A95}.YavscPre|Any CPU.ActiveCfg = YavscPre|Any CPU
|
||||||
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
||||||
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
||||||
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.Release|Any CPU.Build.0 = Release|Any CPU
|
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.TotemPre|Any CPU.ActiveCfg = TotemPre|Any CPU
|
||||||
|
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.TotemPre|Any CPU.Build.0 = TotemPre|Any CPU
|
||||||
|
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.TotemProd|Any CPU.ActiveCfg = TotemProd|Any CPU
|
||||||
|
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.TotemProd|Any CPU.Build.0 = TotemProd|Any CPU
|
||||||
|
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.Yavsc|Any CPU.ActiveCfg = Yavsc|Any CPU
|
||||||
|
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.Yavsc|Any CPU.Build.0 = Yavsc|Any CPU
|
||||||
|
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.YavscPre|Any CPU.ActiveCfg = YavscPre|Any CPU
|
||||||
|
{59E1DF7B-FFA0-4DEB-B5F3-76EBD98D5356}.YavscPre|Any CPU.Build.0 = YavscPre|Any CPU
|
||||||
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
||||||
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
||||||
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.Release|Any CPU.Build.0 = Release|Any CPU
|
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.TotemPre|Any CPU.ActiveCfg = TotemPre|Any CPU
|
||||||
|
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.TotemPre|Any CPU.Build.0 = TotemPre|Any CPU
|
||||||
|
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.TotemProd|Any CPU.ActiveCfg = TotemProd|Any CPU
|
||||||
|
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.TotemProd|Any CPU.Build.0 = TotemProd|Any CPU
|
||||||
|
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.Yavsc|Any CPU.ActiveCfg = Yavsc|Any CPU
|
||||||
|
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.Yavsc|Any CPU.Build.0 = Yavsc|Any CPU
|
||||||
|
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.YavscPre|Any CPU.ActiveCfg = YavscPre|Any CPU
|
||||||
|
{68F5B80A-616E-4C3C-91A0-828AA40000BD}.YavscPre|Any CPU.Build.0 = YavscPre|Any CPU
|
||||||
{6A312228-9641-478D-916F-4681CC65A35D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{6A312228-9641-478D-916F-4681CC65A35D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{6A312228-9641-478D-916F-4681CC65A35D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{6A312228-9641-478D-916F-4681CC65A35D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{6A312228-9641-478D-916F-4681CC65A35D}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
{6A312228-9641-478D-916F-4681CC65A35D}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
||||||
{6A312228-9641-478D-916F-4681CC65A35D}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
{6A312228-9641-478D-916F-4681CC65A35D}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
||||||
{6A312228-9641-478D-916F-4681CC65A35D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{6A312228-9641-478D-916F-4681CC65A35D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{6A312228-9641-478D-916F-4681CC65A35D}.Release|Any CPU.Build.0 = Release|Any CPU
|
{6A312228-9641-478D-916F-4681CC65A35D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{6A312228-9641-478D-916F-4681CC65A35D}.TotemPre|Any CPU.ActiveCfg = TotemPre|Any CPU
|
||||||
|
{6A312228-9641-478D-916F-4681CC65A35D}.TotemProd|Any CPU.ActiveCfg = TotemProd|Any CPU
|
||||||
|
{6A312228-9641-478D-916F-4681CC65A35D}.TotemProd|Any CPU.Build.0 = TotemProd|Any CPU
|
||||||
|
{6A312228-9641-478D-916F-4681CC65A35D}.Yavsc|Any CPU.ActiveCfg = Yavsc|Any CPU
|
||||||
|
{6A312228-9641-478D-916F-4681CC65A35D}.Yavsc|Any CPU.Build.0 = Yavsc|Any CPU
|
||||||
|
{6A312228-9641-478D-916F-4681CC65A35D}.YavscPre|Any CPU.ActiveCfg = YavscPre|Any CPU
|
||||||
{77044C92-D2F1-45BD-80DD-AA25B311B027}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{77044C92-D2F1-45BD-80DD-AA25B311B027}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{77044C92-D2F1-45BD-80DD-AA25B311B027}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{77044C92-D2F1-45BD-80DD-AA25B311B027}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{77044C92-D2F1-45BD-80DD-AA25B311B027}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
{77044C92-D2F1-45BD-80DD-AA25B311B027}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
||||||
{77044C92-D2F1-45BD-80DD-AA25B311B027}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
{77044C92-D2F1-45BD-80DD-AA25B311B027}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
||||||
{77044C92-D2F1-45BD-80DD-AA25B311B027}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{77044C92-D2F1-45BD-80DD-AA25B311B027}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{77044C92-D2F1-45BD-80DD-AA25B311B027}.Release|Any CPU.Build.0 = Release|Any CPU
|
{77044C92-D2F1-45BD-80DD-AA25B311B027}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{77044C92-D2F1-45BD-80DD-AA25B311B027}.TotemPre|Any CPU.ActiveCfg = TotemPre|Any CPU
|
||||||
|
{77044C92-D2F1-45BD-80DD-AA25B311B027}.TotemPre|Any CPU.Build.0 = TotemPre|Any CPU
|
||||||
|
{77044C92-D2F1-45BD-80DD-AA25B311B027}.TotemProd|Any CPU.ActiveCfg = TotemProd|Any CPU
|
||||||
|
{77044C92-D2F1-45BD-80DD-AA25B311B027}.TotemProd|Any CPU.Build.0 = TotemProd|Any CPU
|
||||||
|
{77044C92-D2F1-45BD-80DD-AA25B311B027}.Yavsc|Any CPU.ActiveCfg = Yavsc|Any CPU
|
||||||
|
{77044C92-D2F1-45BD-80DD-AA25B311B027}.Yavsc|Any CPU.Build.0 = Yavsc|Any CPU
|
||||||
|
{77044C92-D2F1-45BD-80DD-AA25B311B027}.YavscPre|Any CPU.ActiveCfg = YavscPre|Any CPU
|
||||||
|
{77044C92-D2F1-45BD-80DD-AA25B311B027}.YavscPre|Any CPU.Build.0 = YavscPre|Any CPU
|
||||||
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
||||||
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
||||||
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.Release|Any CPU.Build.0 = Release|Any CPU
|
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.TotemPre|Any CPU.ActiveCfg = TotemPre|Any CPU
|
||||||
|
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.TotemPre|Any CPU.Build.0 = TotemPre|Any CPU
|
||||||
|
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.TotemProd|Any CPU.ActiveCfg = TotemProd|Any CPU
|
||||||
|
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.TotemProd|Any CPU.Build.0 = TotemProd|Any CPU
|
||||||
|
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.Yavsc|Any CPU.ActiveCfg = Yavsc|Any CPU
|
||||||
|
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.Yavsc|Any CPU.Build.0 = Yavsc|Any CPU
|
||||||
|
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.YavscPre|Any CPU.ActiveCfg = YavscPre|Any CPU
|
||||||
|
{821FF72D-9F4B-4A2C-B95C-7B965291F119}.YavscPre|Any CPU.Build.0 = YavscPre|Any CPU
|
||||||
{90BF2234-7252-4CD5-B2A4-17501B19279B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{90BF2234-7252-4CD5-B2A4-17501B19279B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{90BF2234-7252-4CD5-B2A4-17501B19279B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{90BF2234-7252-4CD5-B2A4-17501B19279B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{90BF2234-7252-4CD5-B2A4-17501B19279B}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
{90BF2234-7252-4CD5-B2A4-17501B19279B}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
||||||
{90BF2234-7252-4CD5-B2A4-17501B19279B}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
{90BF2234-7252-4CD5-B2A4-17501B19279B}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
||||||
{90BF2234-7252-4CD5-B2A4-17501B19279B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{90BF2234-7252-4CD5-B2A4-17501B19279B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{90BF2234-7252-4CD5-B2A4-17501B19279B}.Release|Any CPU.Build.0 = Release|Any CPU
|
{90BF2234-7252-4CD5-B2A4-17501B19279B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{90BF2234-7252-4CD5-B2A4-17501B19279B}.TotemPre|Any CPU.ActiveCfg = TotemPre|Any CPU
|
||||||
|
{90BF2234-7252-4CD5-B2A4-17501B19279B}.TotemProd|Any CPU.ActiveCfg = TotemProd|Any CPU
|
||||||
|
{90BF2234-7252-4CD5-B2A4-17501B19279B}.TotemProd|Any CPU.Build.0 = TotemProd|Any CPU
|
||||||
|
{90BF2234-7252-4CD5-B2A4-17501B19279B}.Yavsc|Any CPU.ActiveCfg = Yavsc|Any CPU
|
||||||
|
{90BF2234-7252-4CD5-B2A4-17501B19279B}.Yavsc|Any CPU.Build.0 = Yavsc|Any CPU
|
||||||
|
{90BF2234-7252-4CD5-B2A4-17501B19279B}.YavscPre|Any CPU.ActiveCfg = YavscPre|Any CPU
|
||||||
|
{90BF2234-7252-4CD5-B2A4-17501B19279B}.YavscPre|Any CPU.Build.0 = YavscPre|Any CPU
|
||||||
{9D7D892E-9B77-4713-892D-C26E1E944119}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{9D7D892E-9B77-4713-892D-C26E1E944119}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{9D7D892E-9B77-4713-892D-C26E1E944119}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{9D7D892E-9B77-4713-892D-C26E1E944119}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{9D7D892E-9B77-4713-892D-C26E1E944119}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
{9D7D892E-9B77-4713-892D-C26E1E944119}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
||||||
{9D7D892E-9B77-4713-892D-C26E1E944119}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
{9D7D892E-9B77-4713-892D-C26E1E944119}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
||||||
{9D7D892E-9B77-4713-892D-C26E1E944119}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{9D7D892E-9B77-4713-892D-C26E1E944119}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{9D7D892E-9B77-4713-892D-C26E1E944119}.Release|Any CPU.Build.0 = Release|Any CPU
|
{9D7D892E-9B77-4713-892D-C26E1E944119}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{9D7D892E-9B77-4713-892D-C26E1E944119}.TotemPre|Any CPU.ActiveCfg = TotemPre|Any CPU
|
||||||
|
{9D7D892E-9B77-4713-892D-C26E1E944119}.TotemPre|Any CPU.Build.0 = TotemPre|Any CPU
|
||||||
|
{9D7D892E-9B77-4713-892D-C26E1E944119}.TotemProd|Any CPU.ActiveCfg = TotemProd|Any CPU
|
||||||
|
{9D7D892E-9B77-4713-892D-C26E1E944119}.TotemProd|Any CPU.Build.0 = TotemProd|Any CPU
|
||||||
|
{9D7D892E-9B77-4713-892D-C26E1E944119}.Yavsc|Any CPU.ActiveCfg = Yavsc|Any CPU
|
||||||
|
{9D7D892E-9B77-4713-892D-C26E1E944119}.Yavsc|Any CPU.Build.0 = Yavsc|Any CPU
|
||||||
|
{9D7D892E-9B77-4713-892D-C26E1E944119}.YavscPre|Any CPU.ActiveCfg = YavscPre|Any CPU
|
||||||
|
{9D7D892E-9B77-4713-892D-C26E1E944119}.YavscPre|Any CPU.Build.0 = YavscPre|Any CPU
|
||||||
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
||||||
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD}.Release|Any CPU.Build.0 = Release|Any CPU
|
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD}.TotemPre|Any CPU.ActiveCfg = TotemPre|Any CPU
|
||||||
|
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD}.TotemProd|Any CPU.ActiveCfg = TotemProd|Any CPU
|
||||||
|
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD}.Yavsc|Any CPU.ActiveCfg = Yavsc|Any CPU
|
||||||
|
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD}.Yavsc|Any CPU.Build.0 = Yavsc|Any CPU
|
||||||
|
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD}.YavscPre|Any CPU.ActiveCfg = YavscPre|Any CPU
|
||||||
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
||||||
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
||||||
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.Release|Any CPU.Build.0 = Release|Any CPU
|
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.TotemPre|Any CPU.ActiveCfg = TotemPre|Any CPU
|
||||||
|
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.TotemPre|Any CPU.Build.0 = TotemPre|Any CPU
|
||||||
|
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.TotemProd|Any CPU.ActiveCfg = TotemProd|Any CPU
|
||||||
|
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.TotemProd|Any CPU.Build.0 = TotemProd|Any CPU
|
||||||
|
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.Yavsc|Any CPU.ActiveCfg = Yavsc|Any CPU
|
||||||
|
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.Yavsc|Any CPU.Build.0 = Yavsc|Any CPU
|
||||||
|
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.YavscPre|Any CPU.ActiveCfg = YavscPre|Any CPU
|
||||||
|
{BBA7175D-7F92-4278-96FC-84C495A2B5A6}.YavscPre|Any CPU.Build.0 = YavscPre|Any CPU
|
||||||
{C6DBD1DC-B619-4DC7-BC92-15693508541E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{C6DBD1DC-B619-4DC7-BC92-15693508541E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{C6DBD1DC-B619-4DC7-BC92-15693508541E}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
{C6DBD1DC-B619-4DC7-BC92-15693508541E}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
||||||
{C6DBD1DC-B619-4DC7-BC92-15693508541E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{C6DBD1DC-B619-4DC7-BC92-15693508541E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{C6DBD1DC-B619-4DC7-BC92-15693508541E}.TotemPre|Any CPU.ActiveCfg = TotemPre|Any CPU
|
||||||
|
{C6DBD1DC-B619-4DC7-BC92-15693508541E}.TotemProd|Any CPU.ActiveCfg = TotemProd|Any CPU
|
||||||
|
{C6DBD1DC-B619-4DC7-BC92-15693508541E}.Yavsc|Any CPU.ActiveCfg = Yavsc|Any CPU
|
||||||
|
{C6DBD1DC-B619-4DC7-BC92-15693508541E}.YavscPre|Any CPU.ActiveCfg = YavscPre|Any CPU
|
||||||
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
||||||
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
||||||
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.Release|Any CPU.Build.0 = Release|Any CPU
|
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.TotemPre|Any CPU.ActiveCfg = TotemPre|Any CPU
|
||||||
|
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.TotemPre|Any CPU.Build.0 = TotemPre|Any CPU
|
||||||
|
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.TotemProd|Any CPU.ActiveCfg = TotemProd|Any CPU
|
||||||
|
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.TotemProd|Any CPU.Build.0 = TotemProd|Any CPU
|
||||||
|
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.Yavsc|Any CPU.ActiveCfg = Yavsc|Any CPU
|
||||||
|
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.Yavsc|Any CPU.Build.0 = Yavsc|Any CPU
|
||||||
|
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.YavscPre|Any CPU.ActiveCfg = YavscPre|Any CPU
|
||||||
|
{C6E9E91B-97D3-48D9-8AA7-05356929E162}.YavscPre|Any CPU.Build.0 = YavscPre|Any CPU
|
||||||
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.Lua|Any CPU.ActiveCfg = Lua|Any CPU
|
||||||
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.Lua|Any CPU.Build.0 = Lua|Any CPU
|
||||||
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.Release|Any CPU.Build.0 = Release|Any CPU
|
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.TotemPre|Any CPU.ActiveCfg = TotemPre|Any CPU
|
||||||
|
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.TotemProd|Any CPU.ActiveCfg = TotemProd|Any CPU
|
||||||
|
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.TotemProd|Any CPU.Build.0 = TotemProd|Any CPU
|
||||||
|
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.Yavsc|Any CPU.ActiveCfg = Yavsc|Any CPU
|
||||||
|
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.Yavsc|Any CPU.Build.0 = Yavsc|Any CPU
|
||||||
|
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.YavscPre|Any CPU.ActiveCfg = YavscPre|Any CPU
|
||||||
|
{EEFCECE6-3B7F-4BBE-B7AF-69377AF3CF39}.YavscPre|Any CPU.Build.0 = YavscPre|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(NestedProjects) = preSolution
|
GlobalSection(NestedProjects) = preSolution
|
||||||
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD} = {ECEC9074-ACB5-4A74-BE22-FF7B40F25A1A}
|
{B5F49C21-7BB3-4DC0-AE65-F4ED0F6D15BD} = {ECEC9074-ACB5-4A74-BE22-FF7B40F25A1A}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* pkg.mdproj: nouvelles configurations de déploiement
|
||||||
|
|
||||||
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* pkg.mdproj: adds a build target named "Lua"
|
* pkg.mdproj: adds a build target named "Lua"
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
</Package>
|
</Package>
|
||||||
</Packages>
|
</Packages>
|
||||||
</Packages>
|
</Packages>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Lua</Configuration>
|
<Configuration Condition=" '$(Configuration)' == '' ">TotemPre</Configuration>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* fortune.csproj: nouvelles configurations de déploiement
|
||||||
|
|
||||||
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* fortune.csproj: adds a build target named "Lua"
|
* fortune.csproj: adds a build target named "Lua"
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,27 @@
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>bin\Lua</OutputPath>
|
<OutputPath>bin\Lua</OutputPath>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemProd|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemProd</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'YavscPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\YavscPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Yavsc|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Yavsc</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* Yavsc.csproj: nouvelles configurations de
|
||||||
|
déploiementnouvelles configurations de déploiement
|
||||||
|
|
||||||
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* BackOfficeController.cs: Impléménte un accès à l'API back
|
* BackOfficeController.cs: Impléménte un accès à l'API back
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
<ProjectTypeGuids>{349C5851-65DF-11DA-9384-00065B846F21};{603C0E0B-DB56-11DC-BE95-000D561079B0};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
<ProjectTypeGuids>{349C5851-65DF-11DA-9384-00065B846F21};{603C0E0B-DB56-11DC-BE95-000D561079B0};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>Yavsc</RootNamespace>
|
<RootNamespace>Yavsc</RootNamespace>
|
||||||
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
|
|
||||||
<AssemblyName>Yavsc</AssemblyName>
|
<AssemblyName>Yavsc</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
|
@ -30,6 +30,7 @@
|
||||||
</CustomCommands>
|
</CustomCommands>
|
||||||
<DocumentationFile>bin\Yavsc.xml</DocumentationFile>
|
<DocumentationFile>bin\Yavsc.xml</DocumentationFile>
|
||||||
<Externalconsole>true</Externalconsole>
|
<Externalconsole>true</Externalconsole>
|
||||||
|
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<DebugType>none</DebugType>
|
<DebugType>none</DebugType>
|
||||||
|
|
@ -39,11 +40,33 @@
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<ConsolePause>false</ConsolePause>
|
<ConsolePause>false</ConsolePause>
|
||||||
<DocumentationFile>bin\Yavsc.xml</DocumentationFile>
|
<DocumentationFile>bin\Yavsc.xml</DocumentationFile>
|
||||||
|
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Lua|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Lua|AnyCPU' ">
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>bin</OutputPath>
|
<OutputPath>bin</OutputPath>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemProd|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'YavscPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Yavsc|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
|
|
@ -1,3 +1,12 @@
|
||||||
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* LocalizedText.resx:
|
||||||
|
* LocalizedText.fr.resx:
|
||||||
|
* LocalizedText.Designer.cs:
|
||||||
|
* LocalizedText.fr.Designer.cs: internationalisation
|
||||||
|
|
||||||
|
* YavscModel.csproj: nouvelles configurations de déploiement
|
||||||
|
|
||||||
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* EventPub.cs:
|
* EventPub.cs:
|
||||||
|
|
|
||||||
20
yavscModel/LocalizedText.Designer.cs
generated
20
yavscModel/LocalizedText.Designer.cs
generated
|
|
@ -472,6 +472,12 @@ namespace Yavsc.Model {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static string YourMEACode {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("YourMEACode", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static string ProviderId {
|
public static string ProviderId {
|
||||||
get {
|
get {
|
||||||
return ResourceManager.GetString("ProviderId", resourceCulture);
|
return ResourceManager.GetString("ProviderId", resourceCulture);
|
||||||
|
|
@ -490,6 +496,12 @@ namespace Yavsc.Model {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static string UsersInRole {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("UsersInRole", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static string ThisSiteUsesCookies {
|
public static string ThisSiteUsesCookies {
|
||||||
get {
|
get {
|
||||||
return ResourceManager.GetString("ThisSiteUsesCookies", resourceCulture);
|
return ResourceManager.GetString("ThisSiteUsesCookies", resourceCulture);
|
||||||
|
|
@ -508,9 +520,9 @@ namespace Yavsc.Model {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string EndDate {
|
public static string Name {
|
||||||
get {
|
get {
|
||||||
return ResourceManager.GetString("EndDate", resourceCulture);
|
return ResourceManager.GetString("Name", resourceCulture);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -616,9 +628,9 @@ namespace Yavsc.Model {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string UsersInRole {
|
public static string EndDate {
|
||||||
get {
|
get {
|
||||||
return ResourceManager.GetString("UsersInRole", resourceCulture);
|
return ResourceManager.GetString("EndDate", resourceCulture);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
20
yavscModel/LocalizedText.fr.Designer.cs
generated
20
yavscModel/LocalizedText.fr.Designer.cs
generated
|
|
@ -82,6 +82,12 @@ namespace Yavsc.Model {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static string YourMEACode {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("YourMEACode", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static string Photo {
|
public static string Photo {
|
||||||
get {
|
get {
|
||||||
return ResourceManager.GetString("Photo", resourceCulture);
|
return ResourceManager.GetString("Photo", resourceCulture);
|
||||||
|
|
@ -478,6 +484,12 @@ namespace Yavsc.Model {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static string UsersInRole {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("UsersInRole", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static string ThisSiteUsesCookies {
|
public static string ThisSiteUsesCookies {
|
||||||
get {
|
get {
|
||||||
return ResourceManager.GetString("ThisSiteUsesCookies", resourceCulture);
|
return ResourceManager.GetString("ThisSiteUsesCookies", resourceCulture);
|
||||||
|
|
@ -496,9 +508,9 @@ namespace Yavsc.Model {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string EndDate {
|
public static string Name {
|
||||||
get {
|
get {
|
||||||
return ResourceManager.GetString("EndDate", resourceCulture);
|
return ResourceManager.GetString("Name", resourceCulture);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -604,9 +616,9 @@ namespace Yavsc.Model {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string UsersInRole {
|
public static string EndDate {
|
||||||
get {
|
get {
|
||||||
return ResourceManager.GetString("UsersInRole", resourceCulture);
|
return ResourceManager.GetString("EndDate", resourceCulture);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -59,12 +59,13 @@
|
||||||
<data name="Location"><value>Lieu</value></data>
|
<data name="Location"><value>Lieu</value></data>
|
||||||
<data name="Logout"><value>Déconnection</value></data>
|
<data name="Logout"><value>Déconnection</value></data>
|
||||||
<data name="MaxDate"><value>Date maximale du rendez-vous</value></data>
|
<data name="MaxDate"><value>Date maximale du rendez-vous</value></data>
|
||||||
<data name="MEACode"><value>Votre activité</value></data>
|
<data name="MEACode"><value>Code activité principalement éxercée</value></data>
|
||||||
<data name="Members"><value>Membres</value></data>
|
<data name="Members"><value>Membres</value></data>
|
||||||
<data name="Message_sent"><value>Votre message a été envoyé</value></data>
|
<data name="Message_sent"><value>Votre message a été envoyé</value></data>
|
||||||
<data name="MinDate"><value>Date minimale du rendez-vous</value></data>
|
<data name="MinDate"><value>Date minimale du rendez-vous</value></data>
|
||||||
<data name="Modify"><value>Modifier</value></data>
|
<data name="Modify"><value>Modifier</value></data>
|
||||||
<data name="My_Estimates"><value>Mes estimations</value></data>
|
<data name="My_Estimates"><value>Mes estimations</value></data>
|
||||||
|
<data name="Name"><value>Nom</value></data>
|
||||||
<data name="Needs"><value>Besoin</value></data>
|
<data name="Needs"><value>Besoin</value></data>
|
||||||
<data name="New_Tag"><value>Nouveau Tag</value></data>
|
<data name="New_Tag"><value>Nouveau Tag</value></data>
|
||||||
<data name="no_content"><value>pas de contenu</value></data>
|
<data name="no_content"><value>pas de contenu</value></data>
|
||||||
|
|
@ -113,5 +114,6 @@
|
||||||
<data name="Xshouldbeavailable"><value>Au vu de son calendrier,
|
<data name="Xshouldbeavailable"><value>Au vu de son calendrier,
|
||||||
{0} devrait être disponible pour ce rendez-vous</value></data>
|
{0} devrait être disponible pour ce rendez-vous</value></data>
|
||||||
<data name="younotadmin"><value>Vous n'êtes pas administrateur</value></data>
|
<data name="younotadmin"><value>Vous n'êtes pas administrateur</value></data>
|
||||||
|
<data name="YourMEACode"><value>Votre activité</value></data>
|
||||||
<data name="yourquerytransmitted"><value>Votre demande a été transmise</value></data>
|
<data name="yourquerytransmitted"><value>Votre demande a été transmise</value></data>
|
||||||
</root>
|
</root>
|
||||||
|
|
|
||||||
|
|
@ -61,7 +61,8 @@
|
||||||
<data name="Location"><value>Location</value></data>
|
<data name="Location"><value>Location</value></data>
|
||||||
<data name="Logout"><value>Logout</value></data>
|
<data name="Logout"><value>Logout</value></data>
|
||||||
<data name="MaxDate"><value>Maximal date for the rendez-vous</value></data>
|
<data name="MaxDate"><value>Maximal date for the rendez-vous</value></data>
|
||||||
<data name="MEACode"><value>Mainly Exerted Activity</value></data>
|
<data name="MEACode"><value>Mainly Exerted Activity code</value></data>
|
||||||
|
<data name="Name"><value>Name</value></data>
|
||||||
<data name="Members"><value>Members</value></data>
|
<data name="Members"><value>Members</value></data>
|
||||||
<data name="Message_sent"><value>Your message has been sent.</value></data>
|
<data name="Message_sent"><value>Your message has been sent.</value></data>
|
||||||
<data name="MinDate"><value>Minimal date for the rendez-vous</value></data>
|
<data name="MinDate"><value>Minimal date for the rendez-vous</value></data>
|
||||||
|
|
@ -117,6 +118,7 @@
|
||||||
<data name="Xshouldbeavailable"><value>regarding his calendar,
|
<data name="Xshouldbeavailable"><value>regarding his calendar,
|
||||||
{0} should be available for this booking</value></data>
|
{0} should be available for this booking</value></data>
|
||||||
<data name="younotadmin"><value>You're not administrator</value></data>
|
<data name="younotadmin"><value>You're not administrator</value></data>
|
||||||
|
<data name="YourMEACode"><value>Your activity</value></data>
|
||||||
<data name="yourquerytransmitted"><value>your query has been transmitted</value></data>
|
<data name="yourquerytransmitted"><value>your query has been transmitted</value></data>
|
||||||
|
|
||||||
</root>
|
</root>
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<ConsolePause>false</ConsolePause>
|
<ConsolePause>false</ConsolePause>
|
||||||
<DocumentationFile>bin\Debug\YavscModel.xml</DocumentationFile>
|
<DocumentationFile>bin\Debug\YavscModel.xml</DocumentationFile>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<DebugType>full</DebugType>
|
<DebugType>full</DebugType>
|
||||||
|
|
@ -29,11 +30,33 @@
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<ConsolePause>false</ConsolePause>
|
<ConsolePause>false</ConsolePause>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Lua|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Lua|AnyCPU' ">
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>bin\Lua</OutputPath>
|
<OutputPath>bin\Lua</OutputPath>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemProd|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemProd</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'YavscPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\YavscPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Yavsc|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Yavsc</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* YavscClient.csproj: nouvelles configurations de déploiement
|
||||||
|
|
||||||
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* YavscClient.csproj: Lua config
|
* YavscClient.csproj: Lua config
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,27 @@
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>bin\Lua</OutputPath>
|
<OutputPath>bin\Lua</OutputPath>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'TotemProd|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\TotemProd</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'YavscPre|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\YavscPre</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Yavsc|AnyCPU' ">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Yavsc</OutputPath>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue