Skip to content

Commit

Permalink
updated files
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Nov 14, 2023
1 parent fca40dc commit f2e116c
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 13 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -350,3 +350,5 @@ MigrationBackup/
.ionide/

.idea/

.DS_Store
31 changes: 31 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<LangVersion>10.0</LangVersion>
<Authors>Jeremy D. Miller;Babu Annamalai;Oskar Dudycz;Joona-Pekka Kokko</Authors>
<DebugType>portable</DebugType>

<PackageIconUrl>https://github.com/JasperFx/JasperFx.CodeGeneration/blob/main/jasper-icon.png?raw=true</PackageIconUrl>
<PackageProjectUrl>https:/github.com/jasperfx/JasperFx.CodeGeneration</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<NoWarn>1570;1571;1572;1573;1574;1587;1591;1701;1702;1711;1735;0618</NoWarn>

<PackageProjectUrl>http://jasperfx.github.io/JasperFx.CodeGeneration</PackageProjectUrl>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>

<nullable>enable</nullable>
</PropertyGroup>


<ItemGroup>
<None Include="../../jasper-icon.png" Pack="true" PackagePath="jasper-icon" />
</ItemGroup>
</Project>
5 changes: 5 additions & 0 deletions JasperFx.Core.sln
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Widgets4", "src\Widgets4\Wi
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Widgets5", "src\Widgets5\Widgets5.csproj", "{99B4426F-27F8-4413-8DA5-B10A8B502448}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionItems", "{208A01AF-53A8-4783-A680-562C9C176786}"
ProjectSection(SolutionItems) = preProject
Directory.Build.props = Directory.Build.props
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
Binary file added jasperfx-logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 0 additions & 13 deletions src/JasperFx.Core/JasperFx.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,26 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<Description>Common extension methods and reflection helpers used by JasperFx projects</Description>
<Version>1.5.0</Version>
<Authors>Jeremy D. Miller</Authors>
<AssemblyName>JasperFx.Core</AssemblyName>
<PackageId>JasperFx.Core</PackageId>
<PackageProjectUrl>https://github.com/JasperFX/JasperFx.Core</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/JasperFX/JasperFx.Core/blob/master/LICENSE</PackageLicenseUrl>
<PackageIcon>../../jasperfx.jpg</PackageIcon>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>

</PropertyGroup>
<ItemGroup>
<None Include="jasper-icon.png" Pack="true" PackagePath="" />
</ItemGroup>

</Project>

0 comments on commit f2e116c

Please sign in to comment.