Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
lithiumtoast committed Nov 22, 2023
1 parent 9188e6d commit 50e4fb3
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 22 deletions.
14 changes: 0 additions & 14 deletions GitVersion.yml

This file was deleted.

4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ See [LESSONS-LEARNED.md](./LESSONS-LEARNED.md).

## Installing `C2CS`

`C2CS` is distributed as a NuGet tool. To get started, the .NET 7 software development kit (SDK) is required.
`C2CS` is distributed as a NuGet tool. To get started, the .NET 8 software development kit (SDK) is required.

### Latest release of `C2CS`

Expand Down Expand Up @@ -75,7 +75,7 @@ The `C2CS.Runtime` C# code is directly added to the bottom of the generated bind

### Prerequisites

1. Install [.NET 7 SDK](https://dotnet.microsoft.com/download).
1. Install [.NET 8 SDK](https://dotnet.microsoft.com/download).
2. Install build tools for C/C++.
- Windows:
1. Install Git Bash. (Usually installed with Git for Windows: https://git-scm.com/downloads.)
Expand Down
1 change: 0 additions & 1 deletion nuget.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@
<clear />
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
<add key="bottlenoselabs" value="https://www.myget.org/F/bottlenoselabs/api/v3/index.json" />
<add key="dotnet-experimental" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-experimental/nuget/v3/index.json" />
</packageSources>
</configuration>
3 changes: 0 additions & 3 deletions src/cs/TODO.md

This file was deleted.

10 changes: 9 additions & 1 deletion src/cs/tests/C2CS.Tests/C2CS.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>

<!-- Generated code files -->
<ItemGroup>
<Compile Remove="Generated/**/*.cs" />
<None Include="Generated/**/*.cs" />
</ItemGroup>

<!-- NuGet package references -->
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.7.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
Expand All @@ -33,6 +35,11 @@
</PackageReference>
</ItemGroup>

<!-- Project references -->
<ItemGroup>
<ProjectReference Include="..\..\production\C2CS.Tool\C2CS.Tool.csproj" />
</ItemGroup>

<!-- Clang native library -->
<ItemGroup>
<None Include="$(GitRepositoryPath)\lib\*.*">
Expand All @@ -41,8 +48,9 @@
</None>
</ItemGroup>

<!-- Remove generated AST files -->
<ItemGroup>
<ProjectReference Include="..\..\production\C2CS.Tool\C2CS.Tool.csproj" />
<None Remove="ast\**\*.*" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/cs/tests/C2CS.Tests/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"Console": {
"LogLevel": {
"Default": "Warning",
"C2CS": "Warning"
"C2CS": "Information"
},
"FormatterOptions": {
"ColorBehavior": "Disabled",
Expand Down

0 comments on commit 50e4fb3

Please sign in to comment.