Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: belav/csharpier
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.0
Choose a base ref
...
head repository: belav/csharpier
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.1
Choose a head ref
  • 11 commits
  • 73 files changed
  • 3 contributors

Commits on Apr 19, 2025

  1. Get rider 2025.1 happy

    belav committed Apr 19, 2025
    Configuration menu
    Copy the full SHA
    dec984c View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2025

  1. Releasing 1.0.0 (#1576)

    belav authored Apr 22, 2025
    Configuration menu
    Copy the full SHA
    d7d791e View commit details
    Browse the repository at this point in the history
  2. fix playground deploy

    belav committed Apr 22, 2025
    Configuration menu
    Copy the full SHA
    00d0df3 View commit details
    Browse the repository at this point in the history
  3. tweak website

    belav committed Apr 22, 2025
    Configuration menu
    Copy the full SHA
    165b680 View commit details
    Browse the repository at this point in the history
  4. fix changelog

    belav committed Apr 22, 2025
    Configuration menu
    Copy the full SHA
    b85b095 View commit details
    Browse the repository at this point in the history
  5. Use 1.0.0

    belav committed Apr 22, 2025
    Configuration menu
    Copy the full SHA
    e36bd87 View commit details
    Browse the repository at this point in the history
  6. Getting warnings turned on that get things consistent with what the p… (

    #1578)
    
    …layground docker build is expecting
    belav authored Apr 22, 2025
    Configuration menu
    Copy the full SHA
    4b30a17 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2025

  1. fix command in readme (#1583)

    `csharpier .` does not work 
    
    '.' was not matched. Did you mean one of the following? -h
    Required command was not provided.
    Unrecognized command or argument '.'.
    
    Description:
    
    Usage:
      CSharpier [command] [options]
    
    Options:
      --version       Show version information
      -?, -h, --help  Show help and usage information
    
    Commands:
      format <directoryOrFile>  Format files.
    check <directoryOrFile> Check that files are formatted. Will not write
    any changes.
    pipe-files Keep csharpier running so that multiples files can be piped
    to it via stdin.
    server Run CSharpier as a server so that multiple files may be
    formatted.
    
    
    full quote: 
    
    ```bash
    $ cd ~/src/dotnet/MyImapDownloader/; git status; git remote show origin; git fetch; git status; time csharpier .; git status;
    On branch main
    Untracked files:
      (use "git add <file>..." to include in what will be committed)
    	qodana.yaml
    
    nothing added to commit but untracked files present (use "git add" to track)
    * remote origin
      Fetch URL: git@github.com:kusl/MyImapDownloader.git
      Push  URL: git@github.com:kusl/MyImapDownloader.git
      HEAD branch: main
      Remote branch:
        main tracked
      Local ref configured for 'git push':
        main pushes to main (up to date)
    On branch main
    Untracked files:
      (use "git add <file>..." to include in what will be committed)
    	qodana.yaml
    
    nothing added to commit but untracked files present (use "git add" to track)
    '.' was not matched. Did you mean one of the following?
    -h
    Required command was not provided.
    Unrecognized command or argument '.'.
    
    Description:
    
    Usage:
      CSharpier [command] [options]
    
    Options:
      --version       Show version information
      -?, -h, --help  Show help and usage information
    
    Commands:
      format <directoryOrFile>  Format files.
      check <directoryOrFile>   Check that files are formatted. Will not write any changes.
      pipe-files                Keep csharpier running so that multiples files can be piped to it via stdin.
      server                    Run CSharpier as a server so that multiple files may be formatted.
    
    
    real	0m0.123s
    user	0m0.093s
    sys	0m0.028s
    On branch main
    Untracked files:
      (use "git add <file>..." to include in what will be committed)
    	qodana.yaml
    
    nothing added to commit but untracked files present (use "git add" to track)
    kushal@kusfedora2024:~/src/dotnet/MyImapDownloader$ cd ~/src/dotnet/MyImapDownloader/; git status; git remote show origin; git fetch; git status; time csharpier check .; git status; time csharpier format .; git status;
    On branch main
    Untracked files:
      (use "git add <file>..." to include in what will be committed)
    	qodana.yaml
    
    nothing added to commit but untracked files present (use "git add" to track)
    * remote origin
      Fetch URL: git@github.com:kusl/MyImapDownloader.git
      Push  URL: git@github.com:kusl/MyImapDownloader.git
      HEAD branch: main
      Remote branch:
        main tracked
      Local ref configured for 'git push':
        main pushes to main (up to date)
    On branch main
    Untracked files:
      (use "git add <file>..." to include in what will be committed)
    	qodana.yaml
    
    nothing added to commit but untracked files present (use "git add" to track)
    Error ./Directory.Packages.props - Was not formatted.
      The file did not end with a single newline.
    Error ./MyImapDownloader/MyImapDownloader.csproj - Was not formatted.
      ----------------------------- Expected: Around Line 2 -----------------------------
      <Project Sdk="Microsoft.NET.Sdk">
        <PropertyGroup>
          <OutputType>Exe</OutputType>
      ----------------------------- Actual: Around Line 2 -----------------------------
      <Project Sdk="Microsoft.NET.Sdk">
      
        <PropertyGroup>
      
    Error ./MyImapDownloader/ImapConfiguration.cs - Was not formatted.
      The file did not end with a single newline.
    Error ./MyImapDownloader/EmailDownloadException.cs - Was not formatted.
      The file did not end with a single newline.
    Error ./MyImapDownloader/DownloadOptions.cs - Was not formatted.
      The file did not end with a single newline.
    Error ./MyImapDownloader/Program.cs - Was not formatted.
      ----------------------------- Expected: Around Line 1 -----------------------------
      using CommandLine;
      using Microsoft.Extensions.DependencyInjection;
      ----------------------------- Actual: Around Line 1 -----------------------------
      using Microsoft.Extensions.DependencyInjection;
      using Microsoft.Extensions.Logging;
      
    Error ./MyImapDownloader/EmailDownloadService.cs - Was not formatted.
      The file did not end with a single newline.
    Formatted 7 files in 1424ms.
    
    real	0m1.516s
    user	0m4.071s
    sys	0m0.156s
    On branch main
    Untracked files:
      (use "git add <file>..." to include in what will be committed)
    	qodana.yaml
    
    nothing added to commit but untracked files present (use "git add" to track)
    Formatted 7 files in 1452ms.
    
    real	0m1.534s
    user	0m3.911s
    sys	0m0.138s
    On branch main
    Changes not staged for commit:
      (use "git add <file>..." to update what will be committed)
      (use "git restore <file>..." to discard changes in working directory)
    	modified:   Directory.Packages.props
    	modified:   MyImapDownloader/DownloadOptions.cs
    	modified:   MyImapDownloader/EmailDownloadException.cs
    	modified:   MyImapDownloader/EmailDownloadService.cs
    	modified:   MyImapDownloader/ImapConfiguration.cs
    	modified:   MyImapDownloader/MyImapDownloader.csproj
    	modified:   MyImapDownloader/Program.cs
    
    Untracked files:
      (use "git add <file>..." to include in what will be committed)
    	qodana.yaml
    
    no changes added to commit (use "git add" and/or "git commit -a")
    kushal@kusfedora2024:~/src/dotnet/MyImapDownloader$ 
    
    ```
    9034725985 authored Apr 23, 2025
    Configuration menu
    Copy the full SHA
    c9231f3 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2025

  1. The support for gitignore kills performance and there isn't a straigh…

    …tforward fix (#1589)
    
    Will hopefully be re-enabled with #1587
    
    closes #1584
    belav authored Apr 25, 2025
    Configuration menu
    Copy the full SHA
    e5d8f01 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2025

  1. Fixing issue with msbuild still passing --loglevel (#1590)

    closes #1586
    
    Also fixes issue with the msbuild tests not actually running correctly.
    belav authored Apr 26, 2025
    Configuration menu
    Copy the full SHA
    833d293 View commit details
    Browse the repository at this point in the history
  2. Releasing 1.0.1 (#1592)

    belav authored Apr 26, 2025
    Configuration menu
    Copy the full SHA
    4886792 View commit details
    Browse the repository at this point in the history
Loading