Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
olmobrutall committed Feb 13, 2020
2 parents ac650a2 + e3c1db5 commit df215a2
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 28 deletions.
2 changes: 1 addition & 1 deletion Signum.Engine/Signum.Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<ItemGroup>
<PackageReference Include="Npgsql" Version="4.1.3" />
<PackageReference Include="Signum.Analyzer" Version="2.5.0" />
<PackageReference Include="Signum.MSBuildTask" Version="1.1.4" />
<PackageReference Include="Signum.MSBuildTask" Version="2.0.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.0" />
</ItemGroup>

Expand Down
13 changes: 3 additions & 10 deletions Signum.Entities/Signum.Entities.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
Expand All @@ -12,20 +12,13 @@
<ItemGroup>
<PackageReference Include="Npgsql" Version="4.1.3" />
<PackageReference Include="Signum.Analyzer" Version="2.5.0" />
<PackageReference Include="Signum.MSBuildTask" Version="1.1.4" />
<PackageReference Include="Signum.MSBuildTask" Version="2.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Signum.Utilities\Signum.Utilities.csproj" />
</ItemGroup>

<!--<Target Name="SignumAfterCompile" AfterTargets="AfterCompile" Outputs="$(TargetPath)">
<WriteLinesToFile File="$(BaseIntermediateOutputPath)SignumReferences.txt" Lines="@(ReferencePath)" Overwrite="true" Encoding="Unicode" />
<Exec command="dotnet &quot;C:\Users\Olmo\.nuget\packages\signum.msbuildtask\1.1.2\build\Signum.MSBuildTask.dll&quot; &quot;@(IntermediateAssembly)&quot; &quot;$(BaseIntermediateOutputPath)SignumReferences.txt&quot;" ConsoleToMSBuild="false">
<Output TaskParameter="ConsoleOutput" PropertyName="OutputOfExec" />
</Exec>
</Target>-->


<ItemGroup>
<None Update="Translations\*.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
Expand Down
6 changes: 3 additions & 3 deletions Signum.MSBuildTask/Signum.MSBuildTask.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<ApplicationIcon />
<OutputType>Exe</OutputType>
<StartupObject>Signum.MSBuildTask.Program</StartupObject>
Expand All @@ -10,7 +10,7 @@
<LangVersion>latest</LangVersion>
<Platforms>x64;AnyCPU</Platforms>
<NuSpecFile>Signum.MSBuildTask.nuspec</NuSpecFile>
<Version>1.1.4</Version>
<Version>2.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
12 changes: 7 additions & 5 deletions Signum.MSBuildTask/Signum.MSBuildTask.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,23 @@
<package >
<metadata>
<id>Signum.MSBuildTask</id>
<version>1.1.4</version>
<version>2.0.0</version>
<title>IL rewriter for Signum Framework applications</title>
<authors>Olmo del Corral</authors>
<license type="expression">MIT</license>
<projectUrl>http://www.signumframework.com</projectUrl>
<iconUrl>https://raw.githubusercontent.com/signumsoftware/framework/master/SignumLogo.png</iconUrl>
<icon>SignumLogo.png</icon>
<license type="expression">MIT</license>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>IL rewriter for Signum Framework applications (auto-properties in entities, [AutoInit] and [ExpressionField])</description>
<copyright>Copyright 2018</copyright>
<copyright>Copyright 2020</copyright>
<tags>signum msbuild linq react</tags>
</metadata>
<files>
<file src="SignumLogo.png" target="" />
<file src="bin\**\*.*" target="lib" exclude="bin\**\*.*" />
<file src=".\bin\$configuration$\netcoreapp2.1\*.dll" target="build" />
<file src=".\bin\$configuration$\netcoreapp2.1\*.json" target="build" />
<file src="bin\Release\netcoreapp3.1\*.dll" target="build" />
<file src="bin\Release\netcoreapp3.1\*.json" target="build" />
<file src="Signum.MSBuildTask.targets" target="build" />
</files>
</package>
Binary file added Signum.MSBuildTask/SignumLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion Signum.React/Signum.React.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<PackageReference Include="Npgsql" Version="4.1.3" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Signum.Analyzer" Version="2.5.0" />
<PackageReference Include="Signum.TSGenerator" Version="2.3.0" />
<PackageReference Include="Signum.TSGenerator" Version="3.0.0" />
</ItemGroup>


Expand Down
5 changes: 3 additions & 2 deletions Signum.TSGenerator/Signum.TSGenerator.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<ApplicationIcon />
<OutputType>Exe</OutputType>
<StartupObject>Signum.TSGenerator.Program</StartupObject>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
<LangVersion>latest</LangVersion>
<Platforms>x64;AnyCPU</Platforms>
<Version>2.3.0</Version>
<NuSpecFile>Signum.TSGenerator.nuspec</NuSpecFile>
<Version>3.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
12 changes: 7 additions & 5 deletions Signum.TSGenerator/Signum.TSGenerator.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,23 @@
<package >
<metadata>
<id>Signum.TSGenerator</id>
<version>2.3.0</version>
<version>3.0.0</version>
<title>TypeScript generator for Signum Framework applications</title>
<authors>Olmo del Corral</authors>
<license type="expression">MIT</license>
<projectUrl>http://www.signumframework.com</projectUrl>
<iconUrl>https://raw.githubusercontent.com/signumsoftware/framework/master/SignumLogo.png</iconUrl>
<iconUrl>https://raw.githubusercontent.com/signumsoftware/framework/master/SignumLogo.png</iconUrl>
<icon>SignumLogo.png</icon>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>For every file 'SomeEntitiesNamespace.t4s' in your React project generates a 'SomeEntitiesNamespace.ts' with the Entities, Queries, Messages, Operations, etc..</description>
<copyright>Copyright 2019</copyright>
<copyright>Copyright 2020</copyright>
<tags>signum msbuild typescript csharp linq react</tags>
</metadata>
<files>
<file src="SignumLogo.png" target="" />
<file src="bin\**\*.*" target="lib" exclude="bin\**\*.*" />
<file src=".\bin\$configuration$\netcoreapp2.1\*.dll" target="build" />
<file src=".\bin\$configuration$\netcoreapp2.1\*.json" target="build" />
<file src="bin\Release\netcoreapp3.1\*.dll" target="build" />
<file src="bin\Release\netcoreapp3.1\*.json" target="build" />
<file src="Signum.TSGenerator.targets" target="build" />
</files>
</package>
Binary file added Signum.TSGenerator/SignumLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion Signum.Test/Signum.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Signum.MSBuildTask" Version="1.1.4" />
<PackageReference Include="Signum.MSBuildTask" Version="2.0.0" />

</ItemGroup>

Expand Down

0 comments on commit df215a2

Please sign in to comment.