-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
29f2736
commit c03618c
Showing
2 changed files
with
85 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<Authors>Dynesshely</Authors> | ||
<!-- <Company>Crequency</Company> --> | ||
<Description>Core logic for Csharpell (Csharp script engine).</Description> | ||
<PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/Dynesshely/Csharpell/</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/Dynesshely/Csharpell/</RepositoryUrl> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageTags>csharp;executor;code-analysis;roslyn;script;repl</PackageTags> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<AssemblyVersion>$(Version)</AssemblyVersion> | ||
<FileVersion>$(Version)</FileVersion> | ||
<Version> | ||
0.3.$([System.DateTime]::UtcNow.Date.Subtract($([System.DateTime]::Parse("2023-07-20"))).TotalDays).$([System.Math]::Floor($([System.DateTime]::UtcNow.TimeOfDay.TotalMinutes))) | ||
</Version> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<Authors>Dynesshely</Authors> | ||
<!-- <Company>Crequency</Company> --> | ||
<Description>Core logic for Csharpell (Csharp script engine).</Description> | ||
<PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/Dynesshely/Csharpell/</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/Dynesshely/Csharpell/</RepositoryUrl> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageTags>csharp;executor;code-analysis;roslyn;script;repl</PackageTags> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\README.md" Pack="True" PackagePath="\" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<AssemblyVersion>$(Version)</AssemblyVersion> | ||
<FileVersion>$(Version)</FileVersion> | ||
<Version> | ||
0.4.$([System.DateTime]::UtcNow.Date.Subtract($([System.DateTime]::Parse("2023-07-20"))).TotalDays).$([System.Math]::Floor($([System.DateTime]::UtcNow.TimeOfDay.TotalMinutes))) | ||
</Version> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.6.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\README.md" Pack="True" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.6.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,53 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<Authors>Dynesshely</Authors> | ||
<Description>A shell (REPL) for C# file and execute them as script.</Description> | ||
<Copyright>Copyright © Crequency 2023-present</Copyright> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<AssemblyVersion>$(Version)</AssemblyVersion> | ||
<FileVersion>$(Version)</FileVersion> | ||
<Version> | ||
0.3.$([System.DateTime]::UtcNow.Date.Subtract($([System.DateTime]::Parse("2023-07-20"))).TotalDays).$([System.Math]::Floor($([System.DateTime]::UtcNow.TimeOfDay.TotalMinutes))) | ||
</Version> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageTags>csharp;executor;code-analysis;roslyn;script;repl</PackageTags> | ||
<PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/Dynesshely/Csharpell/</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/Dynesshely/Csharpell/</RepositoryUrl> | ||
|
||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<PackAsTool>True</PackAsTool> | ||
<ToolCommandName>csharpell</ToolCommandName> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\README.md" Pack="True" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CommandLineParser" Version="2.9.1" /> | ||
<PackageReference Include="Csharpell.Core" Version="0.2.45.158" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Csharpell.Core\Csharpell.Core.csproj" /> | ||
</ItemGroup> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<Authors>Dynesshely</Authors> | ||
<Description>A shell (REPL) for C# file and execute them as script.</Description> | ||
<Copyright>Copyright © Crequency 2023-present</Copyright> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<AssemblyVersion>$(Version)</AssemblyVersion> | ||
<FileVersion>$(Version)</FileVersion> | ||
<Version> | ||
0.4.$([System.DateTime]::UtcNow.Date.Subtract($([System.DateTime]::Parse("2023-07-20"))).TotalDays).$([System.Math]::Floor($([System.DateTime]::UtcNow.TimeOfDay.TotalMinutes))) | ||
</Version> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageTags>csharp;executor;code-analysis;roslyn;script;repl</PackageTags> | ||
<PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/Dynesshely/Csharpell/</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/Dynesshely/Csharpell/</RepositoryUrl> | ||
|
||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<PackAsTool>True</PackAsTool> | ||
<ToolCommandName>csharpell</ToolCommandName> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\README.md" Pack="True" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CommandLineParser" Version="2.9.1" /> | ||
<PackageReference Include="Csharpell.Core" Version="0.2.45.158" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Csharpell.Core\Csharpell.Core.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |