This repository was archived by the owner on Jan 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +30
-2
lines changed
System.Collections.Immutable/src
System.Reflection.Metadata/src
System.Threading.Tasks.Dataflow/src Expand file tree Collapse file tree 5 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 15
15
<FileAlignment >512</FileAlignment >
16
16
<DocumentationFile >$(OutputPath)System.Collections.Immutable.xml</DocumentationFile >
17
17
<GenerateAppxPackageOnBuild >False</GenerateAppxPackageOnBuild >
18
- <AssemblyVersion >1.1.9999 </AssemblyVersion >
18
+ <AssemblyVersion >1.1.37 </AssemblyVersion >
19
19
</PropertyGroup >
20
20
<PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
21
21
<DebugSymbols >true</DebugSymbols >
Original file line number Diff line number Diff line change 16
16
<DefaultLanguage >en-US</DefaultLanguage >
17
17
<NoWarn >1591</NoWarn >
18
18
<CLSCompliant >false</CLSCompliant >
19
- <AssemblyVersion >1.0.9999 .0</AssemblyVersion >
19
+ <AssemblyVersion >1.0.22 .0</AssemblyVersion >
20
20
</PropertyGroup >
21
21
<PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" >
22
22
<PlatformTarget >AnyCPU</PlatformTarget >
Original file line number Diff line number Diff line change 9
9
<AppDesignerFolder >Properties</AppDesignerFolder >
10
10
<RootNamespace >System.Threading.Tasks.Dataflow</RootNamespace >
11
11
<AssemblyName >System.Threading.Tasks.Dataflow</AssemblyName >
12
+ <AssemblyVersion >4.5.25.0</AssemblyVersion >
12
13
<TargetFrameworkVersion >v4.5</TargetFrameworkVersion >
13
14
<TargetFrameworkProfile >Profile78</TargetFrameworkProfile >
14
15
<FileAlignment >512</FileAlignment >
Original file line number Diff line number Diff line change 9
9
<AppDesignerFolder >Properties</AppDesignerFolder >
10
10
<RootNamespace >System.Threading.Tasks.Dataflow</RootNamespace >
11
11
<AssemblyName >System.Threading.Tasks.Dataflow</AssemblyName >
12
+ <AssemblyVersion >4.5.25.0</AssemblyVersion >
12
13
<TargetFrameworkVersion >v4.5</TargetFrameworkVersion >
13
14
<TargetFrameworkProfile >Profile7</TargetFrameworkProfile >
14
15
<FileAlignment >512</FileAlignment >
Original file line number Diff line number Diff line change 10
10
<Target Name =" GetAssemblyVersion"
11
11
Returns =" $(AssemblyVersion)" />
12
12
13
+ <!-- Returns the set of files to be included in the nuget package
14
+ with appropriate metadata.-->
15
+ <Target Name =" GetFilesToPackage"
16
+ Returns =" @(FilesToPackage)" >
17
+
18
+ <PropertyGroup >
19
+ <PackagePath Condition =" '$(PackagePath)' == ''" >$(TargetPath)</PackagePath >
20
+ <DocPackagePath Condition =" '$(DocPackagePath)' == ''" >$(DocumentationFile)</DocPackagePath >
21
+
22
+ <!-- default to treat as 'dotnet' package based portable library -->
23
+ <PackageTargetFramework Condition =" '$(PackageTargetFramework)' == ''" >dotnet</PackageTargetFramework >
24
+ <PackageTargetPath Condition =" '$(PackageTargetPath)' == ''" >lib/dotnet</PackageTargetPath >
25
+ </PropertyGroup >
26
+
27
+ <ItemGroup >
28
+ <FilesToPackage Include =" $(PackagePath)" >
29
+ <TargetFramework >$(PackageTargetFramework)</TargetFramework >
30
+ <TargetPath >$(PackageTargetPath)</TargetPath >
31
+ </FilesToPackage >
32
+ <FilesToPackage Include =" $(DocPackagePath)" Condition =" Exists('$(DocPackagePath)')" >
33
+ <TargetFramework >$(PackageTargetFramework)</TargetFramework >
34
+ <TargetPath >$(PackageTargetPath)</TargetPath >
35
+ </FilesToPackage >
36
+ </ItemGroup >
37
+ </Target >
38
+
13
39
<Import Project =" $(ToolsDir)Build.Common.targets" Condition =" Exists('$(ToolsDir)Build.Common.targets')" />
14
40
<Import Project =" ..\override.targets" Condition =" Exists('..\override.targets')" />
15
41
You can’t perform that action at this time.
0 commit comments