dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] pnetlib/profiles framework1.1, NONE, 1.1 compact,


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] pnetlib/profiles framework1.1, NONE, 1.1 compact, 1.13, 1.14 compact-fp, 1.11, 1.12 ecma, 1.13, 1.14 full, 1.14, 1.15 kernel, 1.13, 1.14 kernel-fp, 1.11, 1.12 mscompact, 1.6, 1.7 tiny, 1.12, 1.13 tiny-fp, 1.11, 1.12
Date: Sun, 09 Nov 2003 21:32:26 +0000

Update of /cvsroot/dotgnu-pnet/pnetlib/profiles
In directory subversions:/tmp/cvs-serv19539/profiles

Modified Files:
        compact compact-fp ecma full kernel kernel-fp mscompact tiny 
        tiny-fp 
Added Files:
        framework1.1 
Log Message:


Update all profiles to 1.2; add a new "framework1.1" profile for strict
1.1 compatibility; make the version information configurable from the
profile (needs a new version of csant).


--- NEW FILE: framework1.1 ---
<?xml version="1.0"?>
<profile>
<!-- .NET Framework 1.1 profile -->

<!-- Main framework version -->
<define name="FRAMEWORK_VERSION" value="1.0.5000.0"/>

<!-- Secondary framework version -->
<define name="SECONDARY_VERSION" value="7.0.5000.0"/>

<!-- Provides non-ECMA features -->
<define name="NON_ECMA" value="true"/>

<!-- Only use ECMA-compatible features -->
<define name="ECMA_COMPAT" value="false"/>

<!-- Include .NET Framework 1.2 features -->
<define name="CONFIG_FRAMEWORK_1_2" value="false"/>

<!-- Use reflection facilities -->
<define name="CONFIG_REFLECTION" value="true"/>

<!-- Use runtime infrastructure facilities -->
<define name="CONFIG_RUNTIME_INFRA" value="true"/>

<!-- Use extended numerics -->
<define name="CONFIG_EXTENDED_NUMERICS" value="true"/>

<!-- Use line number debug information -->
<define name="CONFIG_DEBUG_LINES" value="true"/>

<!-- Use remoting facilities -->
<define name="CONFIG_REMOTING" value="true"/>

<!-- Use serialization facilities -->
<define name="CONFIG_SERIALIZATION" value="true"/>

<!-- Use serialization facilities -->
<define name="CONFIG_REFLECTION_EMIT" value="true"/>

<!-- Use COM interoperability marker classes -->
<define name="CONFIG_COM_INTEROP" value="true"/>

<!-- Use CodeDom facilities -->
<define name="CONFIG_CODEDOM" value="true"/>

<!-- Use cryptography facilities -->
<define name="CONFIG_CRYPTO" value="true"/>

<!-- Use X.509 certificate facilities -->
<define name="CONFIG_X509_CERTIFICATES" value="true"/>

<!-- Use permissions objects from System.Security.Permissions -->
<define name="CONFIG_PERMISSIONS" value="true"/>

<!-- Use policy objects from System.Security.Policy -->
<define name="CONFIG_POLICY_OBJECTS" value="true"/>

<!-- Use extended diagnostics classes from System.Diagnostics -->
<define name="CONFIG_EXTENDED_DIAGNOSTICS" value="true"/>

<!-- Use non-portable Win32-specific classes -->
<define name="CONFIG_WIN32_SPECIFICS" value="true"/>

<!-- Use isolated storage classes from System.IO.IsolatedStorage -->
<define name="CONFIG_ISOLATED_STORAGE" value="true"/>

<!-- Use System.ComponentModel classes -->
<define name="CONFIG_COMPONENT_MODEL" value="true"/>

<!-- Use System.ComponentModel.Design classes -->
<define name="CONFIG_COMPONENT_MODEL_DESIGN" value="true"/>

<!-- Use the small version of System.Console -->
<define name="CONFIG_SMALL_CONSOLE" value="false"/>

<!-- Use the extended version of System.Console -->
<define name="CONFIG_EXTENDED_CONSOLE" value="false"/>

<!-- Use SSL Support using DotGNU.SSL -->
<define name="CONFIG_SSL" value="true"/>

<!-- Use serial port classes -->
<define name="CONFIG_SERIAL_PORTS" value="false"/>

</profile>

Index: tiny
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/profiles/tiny,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** tiny        4 Nov 2003 07:00:28 -0000       1.12
--- tiny        9 Nov 2003 21:32:23 -0000       1.13
***************
*** 3,8 ****
--- 3,17 ----
  <!-- Tiny profile -->
  
+ <!-- Main framework version -->
+ <define name="FRAMEWORK_VERSION" value="1.2.3400.0"/>
+ 
+ <!-- Secondary framework version -->
+ <define name="SECONDARY_VERSION" value="8.0.1000.0"/>
+ 
  <!-- Only use ECMA-compatible features -->
  <define name="ECMA_COMPAT" value="true"/>
+ 
+ <!-- Include .NET Framework 1.2 features -->
+ <define name="CONFIG_FRAMEWORK_1_2" value="true"/>
  
  <!-- Use reflection facilities -->

Index: ecma
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/profiles/ecma,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** ecma        4 Nov 2003 07:00:28 -0000       1.13
--- ecma        9 Nov 2003 21:32:23 -0000       1.14
***************
*** 3,8 ****
--- 3,17 ----
  <!-- ECMA profile, that enables only ECMA-compatbile -->
  
+ <!-- Main framework version -->
+ <define name="FRAMEWORK_VERSION" value="1.2.3400.0"/>
+ 
+ <!-- Secondary framework version -->
+ <define name="SECONDARY_VERSION" value="8.0.1000.0"/>
+ 
  <!-- Only use ECMA-compatible features -->
  <define name="ECMA_COMPAT" value="true"/>
+ 
+ <!-- Include .NET Framework 1.2 features -->
+ <define name="CONFIG_FRAMEWORK_1_2" value="true"/>
  
  <!-- Use reflection facilities -->

Index: compact
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/profiles/compact,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** compact     4 Nov 2003 07:00:28 -0000       1.13
--- compact     9 Nov 2003 21:32:23 -0000       1.14
***************
*** 3,8 ****
--- 3,17 ----
  <!-- Compact profile -->
  
+ <!-- Main framework version -->
+ <define name="FRAMEWORK_VERSION" value="1.2.3400.0"/>
+ 
+ <!-- Secondary framework version -->
+ <define name="SECONDARY_VERSION" value="8.0.1000.0"/>
+ 
  <!-- Only use ECMA-compatible features -->
  <define name="ECMA_COMPAT" value="true"/>
+ 
+ <!-- Include .NET Framework 1.2 features -->
+ <define name="CONFIG_FRAMEWORK_1_2" value="true"/>
  
  <!-- Use reflection facilities -->

Index: tiny-fp
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/profiles/tiny-fp,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** tiny-fp     4 Nov 2003 07:00:28 -0000       1.11
--- tiny-fp     9 Nov 2003 21:32:23 -0000       1.12
***************
*** 3,8 ****
--- 3,17 ----
  <!-- Tiny profile with floating-point -->
  
+ <!-- Main framework version -->
+ <define name="FRAMEWORK_VERSION" value="1.2.3400.0"/>
+ 
+ <!-- Secondary framework version -->
+ <define name="SECONDARY_VERSION" value="8.0.1000.0"/>
+ 
  <!-- Only use ECMA-compatible features -->
  <define name="ECMA_COMPAT" value="true"/>
+ 
+ <!-- Include .NET Framework 1.2 features -->
+ <define name="CONFIG_FRAMEWORK_1_2" value="true"/>
  
  <!-- Use reflection facilities -->

Index: compact-fp
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/profiles/compact-fp,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** compact-fp  4 Nov 2003 07:00:28 -0000       1.11
--- compact-fp  9 Nov 2003 21:32:23 -0000       1.12
***************
*** 3,8 ****
--- 3,17 ----
  <!-- Compact profile with floating point -->
  
+ <!-- Main framework version -->
+ <define name="FRAMEWORK_VERSION" value="1.2.3400.0"/>
+ 
+ <!-- Secondary framework version -->
+ <define name="SECONDARY_VERSION" value="8.0.1000.0"/>
+ 
  <!-- Only use ECMA-compatible features -->
  <define name="ECMA_COMPAT" value="true"/>
+ 
+ <!-- Include .NET Framework 1.2 features -->
+ <define name="CONFIG_FRAMEWORK_1_2" value="true"/>
  
  <!-- Use reflection facilities -->

Index: full
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/profiles/full,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** full        4 Nov 2003 07:00:28 -0000       1.14
--- full        9 Nov 2003 21:32:23 -0000       1.15
***************
*** 3,6 ****
--- 3,12 ----
  <!-- Full profile, that enables all relevant features -->
  
+ <!-- Main framework version -->
+ <define name="FRAMEWORK_VERSION" value="1.2.3400.0"/>
+ 
+ <!-- Secondary framework version -->
+ <define name="SECONDARY_VERSION" value="8.0.1000.0"/>
+ 
  <!-- Provides non-ECMA features -->
  <define name="NON_ECMA" value="true"/>
***************
*** 8,11 ****
--- 14,20 ----
  <!-- Only use ECMA-compatible features -->
  <define name="ECMA_COMPAT" value="false"/>
+ 
+ <!-- Include .NET Framework 1.2 features -->
+ <define name="CONFIG_FRAMEWORK_1_2" value="true"/>
  
  <!-- Use reflection facilities -->

Index: mscompact
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/profiles/mscompact,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** mscompact   4 Nov 2003 07:00:28 -0000       1.6
--- mscompact   9 Nov 2003 21:32:23 -0000       1.7
***************
*** 3,6 ****
--- 3,12 ----
  <!-- Profile that roughly corresponds to the MS Compact .NET Framework -->
  
+ <!-- Main framework version -->
+ <define name="FRAMEWORK_VERSION" value="1.2.3400.0"/>
+ 
+ <!-- Secondary framework version -->
+ <define name="SECONDARY_VERSION" value="8.0.1000.0"/>
+ 
  <!-- Provides non-ECMA features -->
  <define name="NON_ECMA" value="true"/>
***************
*** 8,11 ****
--- 14,20 ----
  <!-- Only use ECMA-compatible features -->
  <define name="ECMA_COMPAT" value="false"/>
+ 
+ <!-- Include .NET Framework 1.2 features -->
+ <define name="CONFIG_FRAMEWORK_1_2" value="true"/>
  
  <!-- Use reflection facilities -->

Index: kernel-fp
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/profiles/kernel-fp,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** kernel-fp   4 Nov 2003 07:00:28 -0000       1.11
--- kernel-fp   9 Nov 2003 21:32:23 -0000       1.12
***************
*** 3,8 ****
--- 3,17 ----
  <!-- Kernel profile with floating-point -->
  
+ <!-- Main framework version -->
+ <define name="FRAMEWORK_VERSION" value="1.2.3400.0"/>
+ 
+ <!-- Secondary framework version -->
+ <define name="SECONDARY_VERSION" value="8.0.1000.0"/>
+ 
  <!-- Only use ECMA-compatible features -->
  <define name="ECMA_COMPAT" value="true"/>
+ 
+ <!-- Include .NET Framework 1.2 features -->
+ <define name="CONFIG_FRAMEWORK_1_2" value="true"/>
  
  <!-- Use reflection facilities -->

Index: kernel
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/profiles/kernel,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** kernel      4 Nov 2003 07:00:28 -0000       1.13
--- kernel      9 Nov 2003 21:32:23 -0000       1.14
***************
*** 3,8 ****
--- 3,17 ----
  <!-- Kernel profile -->
  
+ <!-- Main framework version -->
+ <define name="FRAMEWORK_VERSION" value="1.2.3400.0"/>
+ 
+ <!-- Secondary framework version -->
+ <define name="SECONDARY_VERSION" value="8.0.1000.0"/>
+ 
  <!-- Only use ECMA-compatible features -->
  <define name="ECMA_COMPAT" value="true"/>
+ 
+ <!-- Include .NET Framework 1.2 features -->
+ <define name="CONFIG_FRAMEWORK_1_2" value="true"/>
  
  <!-- Use reflection facilities -->





reply via email to

[Prev in Thread] Current Thread [Next in Thread]